jQuery("ul.sf-menu").supersubs({ 
	minWidth:    12,
	maxWidth:    27,
	extraWidth:  1
}).superfish({ 
	delay:       200,
	speed:       250 
});	

jQuery("#open").click(function(){
	jQuery("div#panel").slideDown("slow");

});	
jQuery("#close").click(function(){
	jQuery("div#panel").slideUp("slow");	
});		

jQuery("#toggle a").click(function () {
	jQuery("#toggle a").toggle();
});		

jQuery("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
jQuery("#tabbed").tabs().show();

jQuery("#sub-navigation li").hover(function() {
	jQuery('ul:first', this).slideDown();
},
function() {
	jQuery('ul:first', this).slideUp();										
});

jQuery('.backtotop').click(function(){
	jQuery('html, body').animate({scrollTop:0}, 'slow');
});		
