/**
 * Rollovers etc
 * 
 * @author Avery Brooks
 * @copyright 10/2008
 */

$.fn.initRollovers = function(baseurl) {
	$("#headerMenu li a").each(
		function() {	
			$(this).bind(
				"mouseover",
				function() {
					$(".topnavOn").css("display","none");
					$(".topnavOff").css("display","inline");
					$(this).children(".topnavOn").css("display","inline");
					$(this).children(".topnavOff").css("display","none");
				}
			);
			$(this).bind(
				"mouseout",
				function() {
					$(".topnavOn").css("display","none");
					$(".topnavOff").css("display","inline");
				}
			);
		}
	);

	$(".submitImage").bind(
		"mouseover",
		function() {
			$(this).attr("src",baseurl+"Images/Interface/Form/btn_submit_over.gif");
		}
	);
	$(".submitImage").bind(
		"mouseout",
		function() {
			$(this).attr("src",baseurl+"Images/Interface/Form/btn_submit.gif");
		}
	);
}
