$(document).ready(function(){
	//Shadowbox.init();
	//Shadowbox.setup();
	$("img").each(function(){
		$(this).animate({
			opacity: 'show'
		}, 1500);
	});
	/*
	$("img").hover(
	function(){
		var curimg= this.id
		$("img").each(function(i){
			if(this.id != curimg){
				$(this).stop();
				$(this).fadeTo("fast", 0.33);
			}
		});
	},
	function(){
		$("img").stop();
		$("img").fadeTo("fast",1);
	}
	);*/

});
