

$(document).ready(function(){
			
	//Hover event for main navigation
	$('div[class=mainNavItem]').hover(
		function() {
			$(this).css("background","url(/images/ico_navArrow.png) no-repeat 0px 0px");
		},
		function() {
			$(this).css("background","none");
		}
	);
	
	$("#creditOrBilling").change(function(){
		 if($(this).val() == 1)
		 {
			 $("#billed").slideUp("slow");
			 $("#credit").slideDown("slow");
		 }else{
			 $("#credit").slideUp("slow");
			 $("#billed").slideDown("slow");
		 }
	});
		
 });


