$('#rotator')
	.cycle({
		pagerEvent: 'mouseover' ,
		fx: 'fade',
        speed: 400,
        timeout: 6000,
        delay:  -4000,
        sync: 1,
        pause: 1,
        cleartypeNoBg: true,
        pager:  '#rotator-nav',
        pagerAnchorBuilder: function(idx, slide) {
        return '#rotator-nav li.mainSliderNav:eq(' +(idx)+ ') a';}
});

jQuery(document).ready(function() {

	jQuery.fn.cleardefault = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};
jQuery(".clearit input, .clearit textarea").cleardefault();

});
