jQuery(document).ready(function() {
  // create and process tabs
	jQuery('.tabContent').not('#tabSpecialsContent').hide();
	jQuery('#infoTabs li').bind('click', function(){
		//open when click
		jQuery('#infoTabs li').removeClass();
		jQuery(this).addClass("active");
		jQuery('.tabContent').hide();
		jQuery('#' + jQuery(this).attr('id') + 'Content').show();
	});
});
