$(document).ready(function(){
	initUntiDreamviewer();
	initMenuHover();
	initLightBox();
});

function initUntiDreamviewer(){
	$('body').removeClass('dreamviewer');
}

function initMenuHover(){
	if ($('#header ul.main-menu li').length == 0) return false;
	
	$('#header ul.main-menu li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
}

function initLightBox(){
	if ($('#content div.sub-block div.photo').length == 0) return false;
	
	$('#content div.sub-block div.photo a').lightBox();
}
