$(document).ready(function(){

	if($('input#cc_email').length > 0)
	{
		$('input#cc_email').val('Join the movement!');
	
		$('input#cc_email').focus(function(){
			if($(this).val()=='Get our Newsletter')
			{
				$(this).val('');
			}
			
		});
		
		$('input#cc_email').blur(function(){
			if($(this).val().length == 0)
			{
				$(this).val('Get our Newsletter');
			}
			
		});
		
		
	}
	
	$("a.home_youtube").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
				'wmode'		: 'transparent',
				'allowfullscreen'	: 'true',
				'autoplay' : 1
			}
		});

		return false;
	});
	

	
	if($('img.home_ss_mothersday').length > 0)
	{
		$('img.home_ss_mothersday').each(function(){
			$(this).click(function(){
				window.open('http://shop.prosperitycandle.com/giftcertificates.php', '_blank');
			});
		});
	}

	
	
	if($('img.home_ss_valentine').length > 0)
	{
		$('img.home_ss_valentine').each(function(){
			$(this).click(function(){
				window.open('http://shop.prosperitycandle.com/shop/view/14', '_self');
			});
		});
	}

	
	if($('img.home_ss_spirit').length > 0)
	{
		$('img.home_ss_spirit').each(function(){
			$(this).click(function(){
				window.open('http://shop.prosperitycandle.com/shop/view/13', '_self');
			});
		});
	}
	
	if($('img.home_ss_shop').length > 0)
	{
		$('img.home_ss_shop').each(function(){
			$(this).click(function(){
				window.open('http://shop.prosperitycandle.com/shop', '_self');
			});
		});
	}
	
	if($('img.home_ss_voices').length > 0)
	{
		$('img.home_ss_voices').each(function(){
			$(this).click(function(){
				window.open('http://www.prosperitycandle.com/voices/', '_self');
			});
		});
	}
	
	if($('#sac-whatelse-signup').length > 0 && $('input#cc_email').length > 0)
	{
		$('#sac-whatelse-signup').click(function(){
			$('input#cc_email').focus();
		});
	}
	
	if($('div#sac_video_placeholder').length > 0 )
	{
		$('img#sac_video_image').click(function(){
			$.ajax({
				type: 'POST',
				url: '/shareaclick',
				data: "action=count",
				async: false,
				complete: function(msg){
					$('#sac_view_tally').html(msg.responseText);
					$('div#sac_video_placeholder').html('<object width="472" height="291"><param name="movie" value="http://www.youtube.com/v/CooitTQnaPo?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1&amp;autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CooitTQnaPo?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1&amp;autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="472" height="291"></embed></object>');
				}
			});
		});	
	}
	
});
	

