$(document).ready(function(){ 					   
$("ul.sf-menu").supersubs({ 
            minWidth:    12, 
            maxWidth:    30,   
            extraWidth:  1     
        }).superfish(); 

$("#slider").easySlider({
			vertical: true,
			controlsShow: false,
			speed: 800,
			pause: 6000,
			continuous: true,
			auto: true	
		});		 
}); 

jQuery(document).ready(function($){
        $('.logo').fadeIn(3000);
		$(".toggle_container").hide();

		$("h5.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	    });
	
		$("h5.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
		});
	
		$(".toggle_panel").hide();	   
     	});     		   
