$(function() {
$('#slideshow').cycle({ 
    fx:     'fade', 
    speed: 10,
    timeout: 6000
    });

$("a[href^='http']").not("[href*='crownrealtypartners.com']").not("[href*='crownrealtypartners.ca']").click(function(){
	window.open(this.href);
	return false;
});

$("a[href*=.pdf]").click(function(){
	window.open(this.href);
	return false;
});

});

