
$(document).ready(function() {
	//Slider
	$('#featured').tabs({fx:{opacity: 'toggle'}}).tabs("rotate", 5000, true);
	
	//Submenus
	$('div.menu li').hover(function (){
		$('.children', this).css('display', 'block');
	}, function() {
		$('.children', this).css('display', 'none');
	});
});


