$( document ).ready(function(){

	// fixed the height problem
	var bdheight = $( window ).height();
	var otherheight = $( '#top' ).height()+$( '#header' ).height()+$( '#footer' ).height();
	conheight = bdheight - otherheight;
	$( '#content' ).css('height',conheight);
	
	$( 'div#overlay img' ).click(function (){
		$( this ).lightBox();
	});


	initFrasersProperty();



});

function initFrasersProperty()
{
	$( '#menutop li:first-child' ).hide();
}