function doClear(theText) {
	if (theText.value == theText.defaultValue) { theText.value = "" };
}

function undoClear(theText) {
	if (theText.value == "") { theText.value = theText.defaultValue };
}

$jq(document).ready(function() {
	$jq('#img-carousel img').hide();
	$jq('#img-nav').addClass('show-nav');
	$jq('#img-carousel').cycle({ 
		fx:				'scrollHorz', 
		speed:			300, 
		timeout:		15000, 
		next:			'#img-nav .next-img', 
		prev:			'#img-nav .prev-img'
	});
	/*$jq('#img-frame').hover(
		function(){ $jq('#img-nav').fadeIn(); },
		function(){ $jq('#img-nav').hide(); }
	);*/
}); 