//Carousel - HOMEPAGE
	jQuery.noConflict();

	jQuery(document).ready(function(){

		jQuery('div.carousel').galleryScroll();

	});
// END OF CAROUSEL

//RECIPE TABS
	jQuery.noConflict();

jQuery(document).ready(function() {

	//Default Action

	jQuery(".recipe-tab-content").hide(); //Hide all content

	jQuery("ul.recipe-tabs li:first").addClass("active").show(); //Activate first tab

	jQuery(".recipe-tab-content:first").show(); //Show first tab content

	//On Click Event

	jQuery("ul.recipe-tabs li").click(function() {

		jQuery("ul.recipe-tabs li").removeClass("active"); //Remove any "active" class

		jQuery(this).addClass("active"); //Add "active" class to selected tab

		jQuery(".recipe-tab-content").hide(); //Hide all tab content

		var activeTab = jQuery(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content

		jQuery(activeTab).fadeIn(); //Fade in the active content

		return false;
	});

});
//END OF RECIPE TABS

//ACCORDION 
jQuery.noConflict();

jQuery("html").addClass("js");

jQuery.fn.accordion.defaults.container = false; 

jQuery(function() {

  jQuery("#acc1").accordion({

      el: ".h", 

      head: "h4, h5", 

      next: "div", 

      initShow : "div.outer:eq(0)"

  });

  jQuery("html").removeClass("js");

});
