$(document).ready(function(){
    // This file is for the individual homes pages
	// Div homes switcher
	$("#img_switch_1, #img_switch_2").hover(
		function () {
        	$(this).addClass("finger")
      	}, 
      	function () {
        	$(this).removeClass("finger");
     	}
    );								  
	$("#img_switch_1").click(function () { 
		$("#homes_switch_2").hide();	
		$("#homes_switch_1").fadeIn(800);
		$(".map").css("margin-top", "45px");
    });
	$("#img_switch_2").click(function () {
		$("#homes_switch_1").hide();
		$("#homes_switch_2").fadeIn(800);
		$(".map").css("margin-top", "45px");
    });
	// Get params from URL
	var pageView = jQuery.url.param("view");
	if (pageView == "floorplan" || pageView == "area") {
		$("#homes_switch_1").hide();
	} else {
		$("#homes_switch_2").hide();
	}
});

