$(document).ready(function(){
	
	$("#highlight-widget").animate({ opacity: 'show' }, "slow");
	
	$(".h-btn").click(function(){
		
		var str = $(".h-btn").text();
		
		if (str == "Quick View") {
			$(".h-btn").text('Normal View');
			$(".highlight").addClass("highlight2").show("slow");
		} else {		
			$(".h-btn").text('Quick View');
			$(".highlight").removeClass("highlight2").show("slow");
		}
		
		return false;
	});

	$(".qmark").click(function(){
		
		$(".bubble").animate({ opacity: 'show' }, "slow");
		return false;
	});

	$(".close").click(function(){
		
		$(".bubble").animate({ opacity: 'hide' }, "slow");
		return false;
	});
});