$(document).ready(function(){
						   

	/*
	---------------------------------------
	First, let's do the sIFR replacements
	---------------------------------------	
	*/
	
	var theContent = $("#content h1").html();
	
	$.sifr({path:'../flash'});
	$('#content h1').sifr({
  		font:'helveticaneuelight',
		color: '#B70026'
	});
	
	$('body#policies #content h1').sifr({
		unsifr: true
	});




	/*
	---------------------------------------
	Manipulate form elements
	---------------------------------------	
	*/	
	
	disable_credit_cards();
	
	//thanks!
	$("fieldset#cc_fieldset label.lab-cr:last-child").removeClass('lab-cr').addClass('mc');
	
	$("span#change-form").hide();
	$("a#change-quantities").click(function () { 
		$("span#change-form-quantity").hide();
		$("span#change-form").show();
	});

	
	
	
	/*
	----------------------------------
	Activate lightbox gallery
	----------------------------------
	*/
	
	$('body#our-product div#columntwo a').lightBox({
		overlayBgColor: '#EBE8E1'
	});


						   
	
});

