
var imagecontainer;





$(document).ready(function() {
	
	$('.placeholder').addClass('load'); 
	
	

	
        //thumbs laden
	$('.image').css("opacity",0);        
	    $(window).load( function() {
               $('.load').animate ({opacity:0},600, function () {
                    $(".load").css("display","none");
               });
		$('.image').animate ({opacity:1},500);
            });
            
            
        $(".image_frame a").each(function () {
		     $(this).click(function() {
			imagecontainer = $(this).attr('title');
                        bigImageIn ()
			//alert (imagecontainer);
                        });
		    });
	
	
});



