$(window).bind('load', function() {
	/*Preloader*/
	var preload = new Array();
	
	$('#imageFading img').each(function(){
		var imgPath = $(this).attr("src");
		preload.push(imgPath);
		
	});
	$(document.createElement('img')).bind('load', function() {
		if(preload[0]) {
			this.src = preload.shift();
		}
	}).trigger('load');
});

$(document).ready(function(){
	$('#imageFading').cycle({
		fx:      'fade', 
    	speed:    1400
	});
});

