jQuery(document).ready(function($) {
	//Main Page Rotator
	if($("#rotator").is(':visible')) {
		$('#rotatorEntries').cycle({ 
			fx: 'fade',
			pager: '#rotatorNav', 
			pagerAnchorBuilder: function(idx, slide) { return '<li></li>'; }, 
			pause: 1,
			timeout: 7000
		});
	}
	
	// Forms
	$(".form input[type='text'], .form textarea").focus(function(){
		$(this).val('').css({ 'color' : '#333' });
	});
});
