// fix background image flicker for IE 6 
try {document.execCommand("BackgroundImageCache", false, true);} catch(err) {}

$(document).ready(function() {
	if ( $("#slideshow").length > 0 ) {
		$('#slideshow').cycle({
			fx: 'scrollLeft',
			pause:  1,
			timeout: 7500
		 });
	}
	if ( $(".item").length > 0 ) {
		$(".item a").fancybox();
	}
});

function openPopup(url) {
	window.open(url, "popup", "width=780,height=640,scrollbars=yes,location=0,menubar=0,toolbar=0,resizable=yes");
}
function openPopupSmall(url) {
	window.open(url, "popup", "width=400,height=300,scrollbars=yes,location=0,menubar=0,toolbar=0,resizable=yes");
}