/* effects code for Haysubs site */

 $(document).ready(function() {

	// button rollover for all browsers   
	$('.button').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	// button rollover for all browsers   
	$('.largeButton').hover(function() {
		$(this).addClass('hoverLarge');
	}, function() {
		$(this).removeClass('hoverLarge');
	});
	
 });

