
$(document).ready(function(){
	$(".JQhover").hover(
        function () {
            $(this).addClass('hover');
        }, 
        function () {
            $(this).removeClass('hover');
        }
    );
    $(".JQlink").click(function () { 
        if ($(this).attr("title")){
            location.href = $(this).attr("name")+$(this).attr("title");
        }
    });
});

