$(function(){
	$(".splitList_50 ul").easyListSplitter({
		colNumber: 2,
		direction: "horizontal"
	});
});

 
$(document).ready(function(){
	
	$('#content-middle ul li').hover(
		function(){
			$(this).animate({'opacity':'0.6'});
		},
		function() {
			$(this).animate({'opacity':'1'});
		}
	);
	
	
	$('#mainnav ul ul li a').each(function(){
			
			var teksti = $(this).text();
			
			if (teksti == 'Kiinteistökehitys ja -suunnittelu') {
				$(this).html('Kiinteistökehitys<br/>ja -suunnittelu');
			}
			if (teksti == 'Kaupallinen konsultointi ja vuokraus') {
				$(this).html('Kaupallinen konsultointi<br />ja vuokraus');
			}
			if (teksti == 'Rakennuttaminen ja projektinjohto') {
				$(this).html('Rakennuttaminen<br/>ja projektinjohto');
			}
			if (teksti == 'Commercial Consulting and Leasing') {
				$(this).html('Commercial Consulting<br/>and Leasing');
			}
			if (teksti == 'Construction Contracting and Project Management') {
				$(this).html('Construction Contracting<br/>and Project Management');
			}
			if (teksti == 'Real Estate Development and Planning') {
				$(this).html('Real Estate<br/>Development and Planning');
			}
			if (teksti == 'Shopping Centre Management') {
				$(this).html('Shopping Centre<br/>Management');
			}
			
		
	});
	
});
