var lasthided=0;
var templast=0;

function animate(id){
	templast=lasthided;
	lasthided=id;
	$('#bovebben_'+id).hide('slow');	
	$('.content').fadeTo(1000,0.0).hide('slow')	;
	$('#bovebben_'+templast).show();
	$('#content_'+id).stop();
	$('#content_'+id).fadeTo(0,0.0);
	$('#content_'+id).show('slow');
	$('#content_'+id).fadeTo(1000,1);
}

function bovebbenclick(id){
	$.get('/getcontent.php?pressid='+id,0,function(data){	
		$('#content_'+id).html(data);
		animate(id);
	});

	return false;
}

function illustmouseover(img){
	$(img).stop();
	$(img).animate({opacity:1.0},1000);
	$(img).bind("mouseout",img, function(img){
		$(this).stop();
		$(this).animate({opacity:0.95},1000);
	});
};




$(document).ready(function(){
	$(".illust_inprism_out").animate({opacity:0.95},100);
});
