$(document).ready (function (){

	//full screen homepage background - url is relative from page, NOT script
    //$.backstretch("images/bg-home-01.jpg");

	//subscribe form watermarks
	$("#signup_name").Watermark("Your name", "#aaa");
	$("#signup_email").Watermark("Email address", "#aaa");

	//social media icons hover
	$("#socialmedia").hover(
		function () {
			$(this).find("span").show();
		}, 
		function () {
			$(this).find("span").hide("fast");
		}
	);

	
	//stores logo hover
	$("#stores-featured li").hover(
		function () {
			$(this).find("div.store-logo").addClass("hover");
		}, 
		function () {
			$(this).find("div.store-logo").removeClass("hover");
		}
	);
	
	
});

