$(document).ready(function(){
			

/* Main Nav Hover */
		$("#header a").not("#header a.on").hover(
			function(){
			$(this).animate({color: "#8cc63f"}, 250);
			},
			function(){
			$(this).animate({color: "#666666"}, 250);
			}
		);
		
		$("a").not("#header a").not(".btnGreen").hover(
			function(){
			$(this).animate({color: "#666"}, 250);
			},
			function(){
			$(this).animate({color: "#8cc63f"}, 250);
			}
		);
		
		
/* Logo Hover */
		
		/* If you want to make your logo turn colors, reenable this function and the png in the css, Also use _background hack for IE 6 to just use the gif
		$("#header h1 a").hover(
			function(){
			$(this).animate({backgroundColor: "#7339c0"}, 250);
			},
			function(){
			$(this).animate({backgroundColor: "#3b5a2a"}, 500);
			}
		);
		*/

		
/* Bread Crumb Hovers plus append breadcrumb È to links */

		$("#breadCrumbs a").hover(
			function(){
			$(this).animate({color: "#8cc63f"}, 250);
			},
			function(){
			$(this).animate({color: "#333"}, 250);
			}
		);
		
		$("#breadCrumbs a").append(' &nbsp;&raquo;');

		
/* Green Button Hover */

		$(".btnGreen").hover(
			function(){
			$(this).animate({backgroundColor: "#666"}, 250);
			},
			function(){
			$(this).animate({backgroundColor: "#7cbb33"}, 250);
			}
		);


/* Product Stylings and Hovers */

		$(".prodGallery, .hmintro").click(function(){
	  		window.location=$(this).find("a").attr("href");
	  		return false;
		});
		
	
		$(".prodGallery, .hmintro").hover(
			function(){
			$(this).css({cursor:"pointer"});
			},
			function(){
			$(this).css({cursor:"default"});
			}
		); 
		
		
		$(".prodGallery, .hmintro").hover(
			function(){
				//$(this).animate({backgroundColor: "#e8f4d9"}, 250);
				$(this).find('a').animate({color: "#666"}, 250);
			},
			function(){
				//$(this).animate({backgroundColor: "#fff"}, 250);
				$(this).find('a').animate({color: "#8cc63f"}, 250);
			}
		);


		$(".prodGallery").hover(
			function(){
			$(this).find('img').animate({width:"108px",borderTopColor:"#8cc63f",borderRightColor:"#8cc63f",borderBottomColor:"#8cc63f",borderLeftColor:"#8cc63f"}, 250);
			},
			function(){
			$(this).find('img').animate({width:"100px",borderTopColor:"#fff",borderRightColor:"#fff",borderBottomColor:"#fff",borderLeftColor:"#fff"}, 250);
			}
		);


		$(".prodColors a img").hover(
			function(){
			$(this).animate({borderTopColor:"#8cc63f",borderRightColor:"#8cc63f",borderBottomColor:"#8cc63f",borderLeftColor:"#8cc63f"}, 250);
			},
			function(){
			$(this).animate({borderTopColor:"#fff",borderRightColor:"#fff",borderBottomColor:"#fff",borderLeftColor:"#fff"}, 250);
			}
		);
		
		
		$(".prodImageLink").hover(
			function(){
			$(this).children('.prodImageTip').css({display:"block",opacity:"0"});
			$(this).children('.prodImageTip').animate({opacity:".95"}, 250);
			},
			function(){
			$(this).children('.prodImageTip').animate({opacity:"0"}, 250);
			}
		);
		
		$(".prodImageLink").append('<span class="prodImageTip">More Images</span>');
		
	
		$(".prodImageTip").css({opacity:"0"});
	
		$(".prodGallery,.hmintro,.btnGreen").corner("3px");

		/* $(".prodImageLink").wrap("<div class='wrap1'><div class='wrap2'>" + "<div class='wrap3'></div></div></div>"); */
		
/* 		console.log("YO"); */
	
	}); //document ready
