$(document).ready(function() {
	
	$('#header ul li ul li:last-child').css('borderBottom','0').css('paddingBottom','0');
	
	$('#header ul li').hover(function() {
		$(this).children('ul').show();
	}, function() {
		$(this).children('ul').hide();
	});
	
	$('#homePhotos').load('/index.php?/page/home-images #homePhotos p', function() {$('#homePhotos p').cycle();});
	
});
