$(document).ready(function() {
	$('#homeLogoZone').mouseover(function() {
		//$('#homeLogoImage img').show();
		$('#homeLogoText').addClass('hoverText');
		$("#displayHomeLogo").css("display","block");
    });            			
    
	$('#homeLogoZone').mouseout(function() {
		//$('#homeLogoImage img').hide();
		$('#homeLogoText').removeClass('hoverText');
		$("#displayHomeLogo").css("display","none");
    });
    
    $(".bugReporting").mouseover(function() {
		$(this).removeClass("bugout");
		$(this).addClass("bughover");
	});
	
	$(".bugReporting").mouseout(function() {
		$(this).removeClass("bughover");
		$(this).addClass("bugout");
	});
	
	$("#setMyHomePage a").click(function() {
		setAsHomePage(this);
	});
});