/*!
 * http://jquery.malsup.com/cycle/basic.html
 */
$(document).ready(function() {
    $('.slideshow_home').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
}
);


function selectCallback(s) 
{ 
 // This function gets called when selection changes 
if( s.selectedIndex == -1 ) return; 
var v = s.options[s.selectedIndex].value; 
location.href=v; 

} 
function attachBehaviors() 
{ 
 // Attach event handler to your select object 
 var s = document.getElementById("property_location_change"); 
 if( s ) 
 { 
 s.onchange = function(){selectCallback(s);}; 
 } 
 
 $('#basic-modal .basic').click(function (e) {
		$('#basic-modal-content').modal();
		
		  return false;
	});
} 
window.onload = attachBehaviors; 
