// JavaScript Document
function uMenu(elId, uColor){
	document.getElementById(elId).style.borderBottom = "3px solid #" + uColor;
}
function uMenuR(elId){
	document.getElementById(elId).style.border = "none";
}
jQuery(document).ready(function() {
	jQuery('#yogurtWipe').cycle({ 
	   fx:     'fade', 
	   speed:   1000, 
	   timeout: 6000, 
	   delay:  -2000, 
	   clip:   'b2t' 
	});
});
function goHome(){
	window.location.href = "index.php";
}