$(document).ready(function(){	  	  	    
    $('a.min').click(function(){		
		$('#big')
			.attr('src', $(this).attr('href'));			
		$('#modal')
			.css({'height':$(document).height(),'padding-top':$(window).scrollTop()+30})			
			.show();
		return false;
    });
    $('#modal').click(function(){
		$(this).hide();
    })
});