// JavaScript Document

function setHeight(){
	var viewportHeight = window.innerHeight ? window.innerHeight : $(window).height();
	var contentHeight = $('#content').height();

	if(viewportHeight-418 > contentHeight){
		$('#content').height(viewportHeight-418);
	}			
}

		 $(document).ready(function(){	
		   $('a.email').nospam({
				replaceText: true,
				filterLevel: 'low'
			});  
		   		   
		    $(document).pngFix(); 
						
			setHeight();
			
			$('a.more_image_link').live('click',function() {	
				var obj = $(this).attr('href');
				var more_images_box = $(this).parent();
				$.get(obj, function(data){more_images_box.html(data); CB_Init(); } );			 
				return false;
			});

		 });
