

$(document).ready(function(){

	
	$(".sidebarmenu .submenu").hide();


	$(".trigger").click(function(){
	
	  $(this).next(".submenu").slideToggle("slow")
	  .siblings(".submenu:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings(".submenu").removeClass("active");
	
	
	});

});

$(document).ready(function(){

	$('.fiksan').mouseover(function() {  
    $(this).animate({ width: "45", height: "45", opacity:"1"}, "slow");  
   
}); 
	$('.fiksan').mouseout(function() {  
    $(this).animate({ width: "40", height: "40", opacity:"0.5" }, "slow");  
   
}); 
});


$(document).ready(function(){
$('.hover').mouseover(function() {
    $(this).animate({ backgroundColor:"#FFF",color:"#000000"},400 );
});				   
$('.hover').mouseout(function() {  
    $(this).animate({backgroundColor:"#000000",color:"#FFF"},400 ); 
   
})  


});		

$('#header').round(function() {
$(this).corner("15px");
});	
