jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery('.s4').each(function(index) {
        jQuery(this).cycle({
			fx: index ? 'none' : 'scrollHorz',
			timeout: 6000,
			speed:   1000,
			sync:    false,
			pager:  '#nav',
			cleartypeNoBg: true,
			pagerAnchorBuilder: function(i) {
				if (index == 0)
					return '<a href="#">'+(i+1)+'</a>';
				return '#nav a:eq('+i+')';
        	}
		});
    });
});
function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}
function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}
