//var $j = jQuery.noConflict(); 

 jQuery(document).ready(function(){
	 jQuery(".productInfoTab").each(function(){
		 jQuery(this).click(function(){
   		jQuery(".productInfoTab").each(function(){
   			jQuery(this).removeClass('active');
				jQuery(".productTabBody").each(function(){
					jQuery(this).hide();
				});
   		});
			var theTab = jQuery(this).attr('id');
			var theBody = theTab.replace("Tab", "Body");
			//alert("#"+theBody);
			jQuery("#"+theBody).show();
		  jQuery(this).addClass('active');
		});
	});
});

jQuery(document).ready(function($){
	$(function() {
		$("a#termsAndConditionsLink").click(function(){
			var content = $("div#termsAndConditions");
			if(content.is(':visible')){
				content.hide();
			}else{
				content.show();
			}
		});
	});
});
