$.fn.preload = function() { 
	this.each(function(){ 
		$('<img/>')[0].src = this; 
	});
};

$(function(){
	$('#logotext').crossSlide({
		fade:1
		}, [
			{ src: 'image/logo_text.jpg', 
			  alt : 'TOKYO夜さ来いCOMPANY｜Official Website', 
			  from: '100% 100% 1x',
			  to:   '100% 100% 1x',
			  time: 10
			},
			{ src: 'image/logo_text-2.jpg', 
			  alt : '東京夜さ来いカンパニー｜オフィシャルサイト',
			  from: '100% 100% 1x', 
			  to:   '100% 100% 1x',
			  time: 10
			}
	], function(){
		
	});
	$('img[src$=png],#logoimg,#sidebar_container').pngfix();
});


