// JavaScript Document
$(document).ready(function(){
	$('.mainLogo .interactiveArea')
	.mouseover(function(){
		$(this).parent().css('backgroundImage','url(images/mainSheep_over.png)');
	})
	.mouseout(function(){
		$(this).parent().css('backgroundImage','url(images/mainSheep.png)');
	})
});