$(document).ready(function(){
	
	$('.productdropoptions').sSelect();
	$('.productqty').sSelect();
	///// SHOW LOADING IMAGE ON AJAX ACTIVITY ////////////////
	$('.ajax')
	    .hide()  // hide it initially
	    .ajaxStart(function() {
	        $(this).show();
	    })
	    .ajaxStop(function() {
	        $(this).delay(350).fadeOut();
	    });


	/// TABS ////////////////////////////////////////////
	
	$(".tabcontent").hide(); 
	$("ul.tabs li:first").addClass("active").show(); 
	$(".tabcontent:first").show(); 


		//On Click Event
		$("ul.tabs li").click(function() {
	
			$("ul.tabs li").removeClass("active"); 
			$(this).addClass("active"); 
			$(".tabcontent").hide(); 
			var activeTab = $(this).find("a").attr("href"); 
			$(activeTab).show(); 
			return false;
		});
	
		Cufon.replace('.price');
		Cufon.replace('.addCount');	
	
	
	/// COLLAPSIBLE MENU //////////////////////////////////
	$(".productsmenu a.more").click(function(){
	
		if($(this).children('ul').is(':visible') == false) {
			$(this).next().slideToggle(300);

			if($(this).parent().hasClass('open')){
				$(this).parent().removeClass('open');
			} else {
				$(this).parent().addClass('open');
			}

		}
		else {
			$(this).parents('ul.productsmenu').removeClass("open");
		}
	});
	
	//$('.productsmenu > li ul:first').show();	
	
	/// SHOP FUNCTIONS //////////////////////////////////

	$('.products').bloooming_shop();	

	


});
