$(document).ready(function () {
    
        
    $(".apr_item").mouseover(function(){
            var id =$(this).attr("id");
	    $(this).css("background-image","url('img_home/"+id+"-cl.jpg')");
	    $(this).children(".apr_nome").fadeTo('fast', 0.8)
	    
    }).mouseout(function(){
	    var id =$(this).attr("id");
	    $(this).css("background-image","url('img_home/"+id+"-pb.jpg')");
	    $(this).children(".apr_nome").fadeOut("fast");
    }).click(function(){
	var name = $(this).attr("name");
	window.location="BIKES/"+name+".php";
	
    });
    
    
    $(".modelo").mouseover(function(){
	    $(this).css("background-image","url('botoes/botao_modelo_hl.png')");
	    $(this).children(".menu_txt").css('color', "#FFF");
	    
    }).mouseout(function(){
	    $(this).css("background-image","url('botoes/botao_modelo.png')");
	    $(this).children(".menu_txt").css('color', "#222");
    }).click(function(){
	var name = $(this).attr("name");
	window.location=""+name+".php";
	
    });
    

});	