$(document).ready(function(){
	
	if(($.browser.msie)&(parseInt($.browser.version)<7)){
		$(document).pngFix();
	}
		
	$('#slideshow').show();
	
	$('#slideshow').cycle({
		fx: 'fade',
		timeout: 2000
	});
	
	$('img.imgswap').hover(function(){
		$(this).attr("src",$(this).attr("src").replace('/off/','/on/'));
	}, function(){
		$(this).attr("src",$(this).attr("src").replace('/on/','/off/'));
	});
	
});
