

$(document).ready(function() {
						   

	 
$("ul.topnav > li a:first-child").mouseover(function() {
$(this).parent().find("ul.subnav").slideDown('fast').show();
$(this).parent().hover(function() {
}, function() {
$(this).parent().find("ul.subnav").slideUp('slow');
});
}).hover(function() {
$(this).addClass("subhover");
}, function() {
$(this).removeClass("subhover");
});


	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
	
	//$("#slider2").easySlider({				auto: true,				controlsBefore:	'<p id="controls2">',				controlsAfter:	'</p>',						prevId: 'prevBtn2',				nextId: 'nextBtn2',				continuous: true,				numeric: true			});

$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 4000, true);

		
  
});
