// JavaScript Document
jQuery(document).ready(function(){
	
	jQuery('.menu li:contains("Subscribe")').html('<a id="subscribelink" href="/subscribe.html">Subscribe</a>');
	jQuery('.menu#menu-homepage-menu li:contains("Blog")').html('<a href="http://www.papillionaire.com.au/blog/">Blog</a>');
	jQuery('.p_slideshow').hide();

	jQuery('[class^=p_link]').mouseover(function(){
		
		var selected = jQuery(this).attr('class');
		selected = selected.replace("p_link_", "");
		jQuery('.bigimage').hide();
		jQuery('.p_slideshow').hide();
		jQuery('#' + selected + '').show();
		});

	if (jQuery('.singleproduct').length)
	{
	if (jQuery('.p_link_1').length == 0){
	jQuery('.p_link_0').remove();	
	}	
	}
	
	jQuery('a.removelink').html('<img src="/img/del-prod.png">');
	jQuery('#shopp #checkout-div .submit input').attr('src','/img/checkout-button.png');
	
	jQuery('.method-name-1').append(' <a href="/store-location" class="google-maps-popup" target="_blank">(see location)</a>');
	
	
	/* jQuery('#order-data-courier-authorisation').click(function(){
		
		isChecked = jQuery(this).attr('checked');
		
		if (isChecked === true)
		{
		jQuery('#autho-loc').fadeIn(200);
		} else { 
		jQuery('#autho-loc').fadeOut(200);
		}
		
		
	}); */
	
	jQuery('#marketing').click(function(){
		
		isChecked = jQuery(this).attr('checked');
		
		if (isChecked === true)
		{
		jQuery(this).parent().parent().animate({
			
				backgroundColor:"#5bc4d4",
				color:"white",
				borderBottom:"6px solid #33909e",
				bottom:"5px"
			
		});	
		
		
		jQuery('p.submit').animate({
			bottom:"5px"
		});
		
		
		
		
		} else {
			
		jQuery(this).parent().parent().animate({
			
				backgroundColor:"#ddd",
				color:"#333",
				borderBottom:"1px solid #aaa",
				position:"relative",
				bottom:"0px"
			
		});
		
		jQuery('p.submit').animate({
			bottom:"0px"
		});
		
		
		}
		
	});
	
	
}
);

