$("document").ready(function(){
	$('.project_item a').lightBox();
	
	var indexHeader = $('#index-header');
	if(indexHeader.length>0) {
		$('.menu-services-cont>a').mouseover(function(){
			$('.menu-services-cont').removeClass('checked');
			$(this).parent().addClass('checked');
			indexHeader.css({backgroundImage:'url('+$(this).attr('indexHeader')+')'});
			$('#index-header-body').html($('.index-header-body', $(this).parent()).html());
		});
		$('.menu-services-cont>a:first').trigger('mouseover');
	}
});
