/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$a = jQuery.noConflict();
$a(document).ready(function(){

    $a(".over").mouseover(function(){
        $a(this).children(".num").css({
            "color":"white"
        });
        $a(this).children(".item_menu").css({
            "color":"red"
        });
        $a(this).css({
            "cursor":"pointer"
        });
    });

    $a(".over").mouseout(function(){
        $a(this).children(".num").css({
            "color":"red"
        });
        $a(this).children(".item_menu").css({
            "color":"white"
        });
    });

    $a(".over").click(function(){
        var esse = $a(this).children(".item_menu").html();
        if(esse=="Home")
        {
            location.href = "index.php";
        }
        if(esse=="Nyl Hair")
        {
            location.href = "nylhair.php";
        }
        if(esse=="Nyl Almeida")
        {
            location.href = "nylalmeida.php";
        }
        if(esse=="Serviços")
        {
            location.href = "servicos.php";
        }
        if(esse=="Midia")
        {
            location.href = "midia.php";
        }
        if(esse=="Fale Conosco")
        {
            location.href = "faleconosco.php";
        }
    });
});



