$(document).ready(function(){
	var url = window.location.href;
		url = url.split('/')
		url = url[3]
		if(!url)
		{
			url = 'dutchlanders'	
		}
		$('.m_'+url).css('background-image','url(/images/menu_'+url+'_hover.png)')
})


$('.m_dutchlanders').live('click',function(){
	var linkk = $(this).find('a').attr('href');
	window.location = linkk							
})

$('.m_werk').live('click',function(){
	var linkk = $(this).find('a').attr('href');
	window.location = linkk										
})

$('.m_contact').live('click',function(){
	var linkk = $(this).find('a').attr('href');
	window.location = linkk											
})

$('.m_follow').live('click',function(){
	var linkk = $(this).find('a').attr('href');
	window.location = linkk												
})



$('.cell').live('mouseenter',function(){
	$(this).find('img').animate({'opacity':0},200)
	$(this).animate({'opacity':1},200)
	return false;								  
})
$('.cell').live('mouseleave',function(){
	$(this).find('img').animate({'opacity':1},200)
	$(this).animate({'opacity':0.9},200)
	return false;								  
})


