// clothes
$(document).ready(function(){
        $('.clothesgrid.captionfull').hover(function(){
	$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	}, function() {
        $(".cover", this).stop().animate({top:'240px'},{queue:false,duration:160});
	}); 
});

// navi1
$(document).ready(function()
{
         $('.menu_body:eq(0)').slideDown()
         $('.menu_body:eq(1)').slideDown()
         $('.menu_body:eq(2)').slideDown()
         $('.menu_body:eq(3)').slideDown()
         $('.menu_body:eq(4)').slideDown()
         $('.menu_body:eq(5)').slideDown()

});


$(document).ready(function()
{
$("#firstpane p.menu_head").click(function()
       {
       $(this).css({backgroundImage:"url(/files/arcticcat/img/menuhead_down.gif)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       $(this).siblings().css({backgroundImage:"url(/files/arcticcat/img/menuhead.gif)"});
      }); 
});



// tabels
$(document).ready(function() {
         $("table.listing tr:odd,table.listing tr:odd,table.news tr:odd,table.news2 tr:odd").css("background-color", "#e9a834");
         $("table.listing2011 tr:odd,table.listing2011 tr:odd, table.news2011 tr:odd,table.news2011 tr:odd").css("background-color", "#dbe7ed");
         $("div.models tr:odd").css("background-color", "#e9a834");
         $("div.models2011 tr:odd").css("background-color", "#70c1ef");
         $("div.models table").css("width", "640px"); 
         $("table.news").css("width", "660px");
         $("table.frpage").css("width", "865px");
         $("b").css("color", "#000");
         $("td.palaute").css("border", "none");
}); 
