/* htdocs/fergweb/corp/js/rootHomePage.js
	 $Id: rootHomePage.js,v 1.2 2012-02-03 16:17:24 dferruggia Exp $ */

jQuery(document).ready(function() {
	$("#btn_professional span").css("opacity","0");
	$("#btn_homeowner span").css("opacity","0");  

	// on mouse over
	$("#btn_professional span").hover(
		function() {
			// animate opacity to full
			$(this).stop().animate({ opacity: 1 }, 500);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({ opacity: 0 }, 500);
		}
	);

	$("#btn_homeowner span").hover(
		function () {
			// animate opacity to full
			$(this).stop().animate({ opacity: 1 }, 500);
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({ opacity: 0 }, 500);
		}
	); 
});


