$(document).ready(function(){
	
	$('.slider').nivoSlider(
		{
		effect:'fold',
		pauseTime:7000,
		directionNav:false,
		controlNav:false,
		pauseOnHover:true
		}
	);


	/* DROP MENU */

	$('li.has_sub').hover(function(){
		$(this).children('.sub_menu').fadeIn();
	 });
	
	
	$('li.has_sub').mouseleave(function(){
		$(this).children('.sub_menu').fadeOut();
	});
	
});
