$(document).ready(function(){
   $("a").filter(".showit").click(function(event){
   event.preventDefault();
   $("div").filter(".brands").show(500);
   $("a").filter(".showit").hide(30);
   $("a").filter(".hideit").show(30);         
});
    $("a").filter(".hideit").click(function(event){   
   event.preventDefault();
   $("div").filter(".brands").hide(500);
   $("a").filter(".hideit").hide(30);

   $("a").filter(".showit").show(30);
 });
                     
      
   

    $('div.catmtop').click(function() {
    
    $('div.catmtop').css('background','url(/misc/img/round.gif) no-repeat'); 
    $(this).css('background','url(/misc/img/round1.gif) no-repeat'); 
    
    //$(this).slideUp();
});
    $('div.catmtop').mouseout(function() {
    //$(this).css('background','url(/misc/img/round.gif) no-repeat');
    //$(this).slideDown();
});
 
});



function mainprod(cat,id){
    $('div.prodname').load('ajax/mainpageprod/'+cat+'/'+id+'/');
}

function maincatprod(cat){
    $('div.prodcat').load('ajax/mainpagecatprod/'+cat+'/');
}

