jQuery(document).ready(function($) {

	$("ul li:last-child").addClass("last-list-item");
	
	
	
	// Search box rollover
	$("#searchSubmit").mouseenter(function(){
		$(this).attr('src', '/wp-content/themes/starkers/images/submitblack.png');
	}).mouseleave(function(){
		 $(this).attr('src', '/wp-content/themes/starkers/images/submitgreen.png');
	});
	
	// Homepage info box rollover
	// Search box rollover
	$("#slidecaption").mouseenter(function(){
		$(this).css('background-image', 'url("/wp-content/themes/starkers/images/HomepageInfoOn.png")');
	}).mouseleave(function(){
		 $(this).css('background-image', 'url("/wp-content/themes/starkers/images/HomepageInfo.png")');
	});

});


