$(document).ready(function(){ 


	
		
	$('#center-stage #close').click(function() {
		$('#center-stage').fadeOut();
	});
	
	$('#photo-gallery a').click(function(){
		link = $(this).attr('href');
		caption = $(this).attr('title');
		$('#center-stage #dynamic-content').html('<img src="'+link.substr(1)+'"/><small>'+caption+'</small>');
		if ( $('#center-stage').css('display') == 'none' ) {
			$('#center-stage').fadeIn();
		}
	});



    $("#featured-listings-thumbs li a").hover(
      function () {
        $(this).children("p").show();
      }, 
      function () {
        $(this).children("p").hide();
      }
    );


}); 

