jQuery(document).ready(function($){  
	
	//Magento Plugin override settings:
	$('#head-shopping-cart a').removeAttr("style");

	
	//  Ask Our Phgarmacist (FAQ)  //
	
	//Disable links in Questions and in 'ask a pharmacist'
	$('#ask-our-pharmacist dt a, #form-ask-trigger a').click(function(e){
		e.preventDefault();
	});
	
	// SlideDown/SlideUp Form in FAQ section
	$('#form-ask-trigger').click( function(){
		
		if ( $(this).hasClass('mcc-expanded') ) 	
			{
				$(this).removeClass('mcc-expanded');	jQuery('div#form-ask').slideUp();
			} 
		
		else 
			{ 
				$(this).addClass('mcc-expanded'); jQuery('div#form-ask').slideDown();
			}
	});
	
	
	// FAQ Question hover effect
	$('#ask-our-pharmacist dt').hover( 

		function(){ $(this).addClass('hovered');	},
		
		function(){ $(this).removeClass('hovered');	}
	
	);
	
	// SlideDown/SlideUp Answer
	$('#ask-our-pharmacist dt').click( function(){
																									 
		if ( $(this).hasClass('mcc-expanded') ) 	
			{	$(this).removeClass('mcc-expanded').next('dd').slideUp(); } 
		
		else 
			{ $(this).addClass('mcc-expanded').next('dd').slideDown(); }
	});
	
	/* Footer social icons - fade effect */
	$('.socicon').hover(
 		function(){ $(this).find('.bw').fadeOut("fast"); },
		function(){ $(this).find('.bw').fadeIn("fast"); }
	);
	
	/* TEMP: Replace text for Related Product(s) in single product view */
	$('.product-collateral .box-up-sell > h2').html('Products you may be interested in:');
	
	$('label[for="billing:region_id"]').html('County');
	$('.validate-zip-international, label[for="billing:postcode"]').hide();
});
