jQuery(document).ready(function() {
	//need to activate the images for mouseover
	jQuery(".social-side").hover(
		function() {
			jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace("social-grey", "social-red"));
		},
		function() {
			jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace("social-red", "social-grey"));
		}
	);
	jQuery(".social-side").trackEvent({
		eventType: "click",
		once: false,
		category: "Social Links",
		label: function(event){return jQuery(this).attr("title"); }
	});
	jQuery(window).scroll(function() {
		if(jQuery(window).scrollTop() > 520) {
			jQuery("#stay_connected").fadeIn(1000);	
		} else {
			jQuery("#stay_connected").fadeOut(500);
		}
	});
});