$().ready(function(){

	/*---:[ Slideshow on Homepage ]:---*/

	$("#gallery_home img").attr("src",$("#featured_listing_1 img").attr("src"));
	$("#gallery_home a").attr("href",$("#featured_listing_1 a").attr("href"));
	
	if($("#gallery_home")) {
	
	setInterval(function() {
	
		currentListing = $("#gallery_home").attr("class");
		currentListing = currentListing.replace("fl_","");
		previousListing = currentListing;
		if(currentListing != $("#featured_listing_1 span.total").html()) {
		
			currentListing++;
			
		
		} else {
		
			currentListing = 1;
			
		}
		
		$("#gallery_home a img").fadeOut(function() {

			$("#gallery_home img").attr("src",$("#featured_listing_" + currentListing + " img").attr("src"));
			$("#gallery_home a").attr("href",$("#featured_listing_" + currentListing + " a").attr("href"));
			document.getElementById("gallery_home").className = 'fl_' + currentListing;
			setTimeout(function(){$("#gallery_home a img").fadeIn("slow");},5);
		
		});
		
	
	}, 4000);
	
	}
	
	/*---:[ /Slideshow on Homepage ]---*/
	
	/*---:[ Pages ]:---*/

	if($("#page").hasClass('page')) { $("body").addClass('page'); }
	page_content = $("#page").html();
	page_content = page_content.replace("<h4>","<h2>");
	page_content = page_content.replace("</h4>","</h2>");
	$("#page").html(page_content);

/*---	:[ /Pages ]:---*/
	
	$("#find_on_the_map h2").hide();
	
	/*---:[ Events ]:---*/
	
	
	
	/*---:[ /Events ]:---*/

});
