$(document).ready(function() { 	
	$(".highlight").hover(function() {
		$(this).children('.highLightInfo').fadeIn("slow");
	  }, function(){
		$(this).children('.highLightInfo').fadeOut();	
	  }
	);
	$(".highlight").click(function() {
		$(this).children('.highLightInfo').hide();
	  }
	);
	$(".imageListing h2").next("div").css('clear', 'both');
	$(".quote:last").addClass("last");
	$(".quote .next").click(function() {
		if ($(this).parents(".quote").hasClass("last")) {
			$(this).parents(".quote").hide();
			$(".quote:first").fadeIn("slow");
		} else {
			$(this).parents(".quote").hide().next().fadeIn("slow");				
		}							 			  
	});
	$(".next").click(function(){			
		$(".green").effect("highlight", {color: '#05264a'}, 2000);
		$(".orange").effect("highlight", {color: '#9a5904'}, 2000);
	});	
});


