$(document).ready(function() {
	/* Help make the Navigation Work Crossbrowser */
	$("#nav ul").css({display: "none"}); // Opera Fix
	$("#nav li").hover(function(){
	$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(); },function(){ $(this).find('ul:first').css({visibility: "hidden"}); });
	
	/* Make our Search Work */
        $('#searchsubmit').click(function() {
            $('#searchform').submit();
        });
	var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
	po.src = 'https://apis.google.com/js/plusone.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);

	/* Handle Megamenu */
	// NoNastys
	$('.noNastyMega.loggedIn').hide();
	$('.noNastyNavItem,.noNastyMega').mouseover(function() {
 	    $('.noNastyNavItem').css('cursor','pointer');
	    $('.noNastyNavItem').addClass('over');
	    $('.noNastyMega').show();
	}).mouseout(function() {
 	    $('.noNastyNavItem').css('cursor','auto');
	    $('.noNastyNavItem').removeClass('over');
	    $('.noNastyMega').hide();
	});	

	// Shop
	$('.shopNavItem,.shopMega').mouseover(function() {
 	    $('.shopNavItem').css('cursor','pointer');
	    $('.shopNavItem').addClass('over');
	    $('.shopMega').show();
	}).mouseout(function() {
 	    $('.shopNavItem').css('cursor','auto');
	    $('.shopNavItem').removeClass('over');
	    $('.shopMega').hide();
	});

	// OurStory		
	$('.ourStoryNavItem,.ourStoryMega').mouseover(function() {
 	    $('.ourStoryNavItem').css('cursor','pointer');
	    $('.ourStoryNavItem').addClass('over');
	    $('.ourStoryMega').show();
	}).mouseout(function() {
 	    $('.ourStoryNavItem').css('cursor','auto');
	    $('.ourStoryNavItem').removeClass('over');
	    $('.ourStoryMega').hide();
	});		

	$('.productContent').append('<div class="clear"></div>');
	$('.productContent p').appendTo('.productContent');
	$('.eshopdetails').appendTo('.productContent');

	$('#tab2').appendTo('.tabs');
	$('#tab3').appendTo('.tabs');

	//When page loads...
	$(".tab").hide(); //Hide all content
	$("#productNav li a:first").addClass("active").show(); //Activate first tab
	$(".tab:first").show(); //Show first tab content

	//On Click Event
	$("#productNav li a").click(function() {
		$("#productNav li a").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab").hide(); //Hide all tab content

		var activeTab = $(this).attr("href");
		$(activeTab).fadeIn();
		return false;
	});

	$('.cat').hover(function() {
	    $(this).addClass('hover');
	}, function() {
	    $(this).removeClass('hover');
	});

	// Register Page Form
	$('#field_1_8 label:first').text('Email');
	$('.register #gform_wrapper_1 label').addClass('label');

	/* First Name */
	$('#input_1_7_3_container').prepend($('#input_1_7_3_container label').html());
	$('#input_1_7_3_container label:last').remove();

	/* Last Name */
	$('#input_1_7_6_container').prepend($('#input_1_7_6_container label').html());
	$('#input_1_7_6_container label:last').remove();

	/* Email */
	$('#field_1_8 label:first').remove();

	/* Password */
	$('#input_1_8_1_container').prepend($('#input_1_8_1_container label').html());
	$('#input_1_8_1_container label:last').remove();

	/* Password 2 */
	$('#input_1_8_2_container').prepend($('#input_1_8_2_container label').html());
	$('#input_1_8_2_container label:last').remove();


	$('.thankYouMsg').appendTo('#tab1');

	// Move the Tabs below the productContent
	$('.tabsContainer').appendTo('article');
	$('<div class="clear"></div>').insertBefore('.tabsContainer');
	$('.noReviews').appendTo('#tab1');
	$('<div class="clear"></div>').insertBefore('.noReviews');
	$('.whiteBox h2').append('<sup>tm</sup>');

	$('.loggedIn #menu-item-58 a').attr('href','/dashboard/');

});

