$(document).ready( function() {
	$("#services > .service-item > a").mouseover( function() {	
		$('.photo-off').show();
		$('.text-on').hide();	
		$('.photo').hide();
		$(this).children('.text').hide();
		$(this).children('.text-on').show();
		$(this).children('.photo-off').hide();
		$(this).children('.photo').show();
	});
	$("#services > .service-item > a").mouseout( function() {
		$('.photo').show();
		$('.text').show();
		$('.text-on').hide();
		$('.photo-off').hide();
		$('.photo-on').hide();
	});
	
	$('.menu-off').hide();
	$('.menu-on').hide();	
	
});
