// External Links
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;


$(document).ready(function(){
						   
//Pretty Photo			
$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'facebook',slideshow:2000});
			
//Change ID of Banner Image on Home Page when Clicked
$('.virtual-tour2').click(function() {
                $(this).replaceWith('<object width="550" height="331"><param name="movie" value="http://www.youtube.com/v/DxBiqyyjelM?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DxBiqyyjelM?fs=1&amp;hl=en_US&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="331"></embed></object><br class="clear" />');
}); 			
		
});


