
function yMove(b)
{
	var yX = -800;
	
	if(b)
	{
		yX = -200;
	}
	
	$("#yellow").stop(true).animate(
	{
		left: yX
	}, 350, 'easeOutExpo', function()
	{
		//
	});

}

function yResize()
{
	var cH = $("#content").height() + 264;
	var wH = $(window).height();
	var yH;
	
	if(cH > wH)
	{
		yH = cH;
	}
	else
	{
		yH = wH;
	}
	
	$("#yellow").height(yH);
}

function tasteHover(b)
{
	var src = "<?php bloginfo('template_url') ?>/img/tasteOff.png";
	
	if(b)
	{
		var src = "<?php bloginfo('template_url') ?>/img/tasteOn.png";
	}
	
	$("#taste").get("img.src").replaceWith(src);
}

function wInfo(w, b)
{
	var wO = 0.75;
	
	if(b)
	{
		wO = 1;
	}
	
	$(w).stop(true).fadeTo('fast', wO, function() {
      // Animation complete.
    });


}