var baseURL = location.host;
	function bkgimg	(){
		if(baseURL = "localhost:8888"){
			return "http://" + baseURL + "/perennial/i/background-images/4.jpg";
		}
		else {
			return "http://" + baseURL + "/i/background-images/4.jpg";
		}
	}
	

$(document).ready(function() {
	
	
	$('#slideshow').cycle({fx: 'fade', speed: 1800, pause: 1, sync: 0, timeoutFn: function (curr, next, opts, isForward) {
        if(opts.currSlide == 3) {return 20000;}
        else {return 8000;}
    } });

	$.backstretch(bkgimg, {speed: 150, centeredY: false});
	
	$('a.simple-back').click(function(){
        if(document.referrer.indexOf(window.location.hostname) != -1){
            parent.history.back();
            return false;
        }
    }); 


});
