// viezel studios
jQuery(document).ready(function(){
	jQuery('.contenttext').corner();
	
	/*
	// topbanner
    jQuery('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speedIn: 500,
		speedOut: 1000,
		timeout: 7000,
		random:  1,
		delay: -2000

	});
	*/
	
	jQuery('.slideshow').find('img').batchImageLoad({
    	loadingCompleteCallback: myCallback
   	});
	
	
		
});


function myCallback() {
     	
		jQuery('.slideshow').animate({'opacity': 1}, 400).cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speedIn: 500,
			speedOut: 1000,
			timeout: 7000,
			random:  1,
			delay: -2000
	
		});
		
   };
