/* Init */
$(document).ready(function() {		
	$('li.block_l').hover(
		function () {	$('ul', this).show();	}, 	
		function () {	$('ul', this).hide();	}			
	);	
	
	$('div.block').hover(
		function () {	$('div', this).show();	}, 	
		function () {	$('div', this).hide();	}			
	);			
});

