//Slideshow
$(document).ready(function() {
	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 0, 
		cleartype:false,
		next:   '#next2', 
		prev:   '#prev2' 
	});
});

//Loading
$(document).ready(function() {
		$("body").fadeIn(2000);
});

//Png Fix
$(document).ready(function(){ 
	$(document).pngFix(); 
}); 

