$(document).ready(function() {

    /* general hovers */
    $(".menu_hover").each(function() {
        if ($(this).find(".hov").attr("id") == 'selected') {
            $(this).find(".hover").removeClass("hover");
			$(this).removeClass("menu_hover");
        }
    });
    $(".menu_hover").hover(function() {
		$(this).css("cursor","pointer").css("cursor","hand");       
		$(this).find(".hover").addClass("hov");
    }, function() {        
		$(this).find(".hover").removeClass("hov");
    });
	
	 $(".menu_hover").click(function() {
		var url = $(this).find(".click").attr("href");
		window.location = url;
     });
	 
	 $(".topmenu").click(function() {
		var url = $(this).find("a").attr("href");
		window.location = url;
     });
});

