$(document).ready(function () {
	if (null != document.getElementById("mainmenu")) {
		$('ul#mainmenu>li').bind('mouseover', function (e) {
			$(this).addClass('over');
		}).bind('mouseout', function (e) {
			$(this).removeClass('over');
		});
	}
	$('div.photoGallery ul, div.photoGallerySample ul').each(function(){
		$(this).find("a").lightBox();
	});
});