$(function() {
	
	
	//messageflash
	$('#messageflash').hide();
	$('#messageflash').slideDown('slow').delay(5000).slideUp('slow');

	//homepage flash fade
	$('#rotatingflashes').cycle()
	
	//bucket flash fade
	$('.rotate_buckets').cycle()
	
	
	//homepage carousel
	$('#carousel').jcarousel({	scroll: 4});
	
	//news fancybox
	$(".newspic a").fancybox({
		'titlePosition': 'over',
		'autoScale': 'true',
		'cyclic': 'false',
		'showNavArrows': 'false'
	});
	
	//menu icons
	$('#menuicons img').hide();
	
	$(".homelink").hover(function () {
	    $(".homewidth img").fadeIn();
	}, function () {
	  	$('#menuicons img').hide();
	});
	
	$(".buyonlinelink").hover(function () {
	    $(".buyonlinewidth img").fadeIn();
	}, function () {
	  	$('#menuicons img').hide();
	});
	
	$(".aboutuslink").hover(function () {
	    $(".aboutuswidth img").fadeIn();
	}, function () {
	  	$('#menuicons img').hide();
	});
	
	$(".contactuslink").hover(function () {
	    $(".contactuswidth img").fadeIn();
	}, function () {
	  	$('#menuicons img').hide();
	});
	
	$(".newslink").hover(function () {
	    $(".newswidth img").fadeIn();
	}, function () {
	  	$('#menuicons img').hide();
	});

	$(".tradelink").hover(function () {
	    $(".tradewidth img").fadeIn();
	}, function () {
	  	$('#menuicons img').hide();
	});	

	//gallery fancybox
	$("#product_gallery a").fancybox({
		'titlePosition': 'over',
		'autoScale': 'true'
	});
	
	//peekaboo specify mixture of sproutapouchs
	if ($('#selectvariety option:selected').val() != 'Let me specify a mixture...'){
  		$("#specifydiv").hide();
  	}

  	$("form").change(function(){
		if ($('#selectvariety option:selected').val() == 'Let me specify a mixture...')
		{
			$("#specifydiv:hidden").show("slow");
		} else {
			$("#specifydiv").hide();
			$("#specifymixture").val("");	
		}
  	});

	//Superfish
    $("ul.sf-menu").superfish({animation:   {opacity:'show',height:'show'} });
		
	//open links in a new window
	$('a[href^="http://"]').attr({
	    target: "_blank", 
	    title: "Opens in a new window"
	});

});
