jQuery(document).ready(function() {
	$().loadHome();
	$().preparePrompts();
});

$.fn.loadHome = function() {
	$("#whatsNew").load("custom/ajax_whatsnew.php", {}, function() {
  		$("#whatsNew").scrollable({
			size: 3, 
			interval: 3500,
			speed: 400, 
			loop: true
		});
	});
}

$.fn.preparePrompts = function() {
	$(".formField").focus(function() {
		if($(this).val() == $(this).attr("title")) {
			$(this).val("");
			$(this).removeClass("prompt");		
		}
	});
	$(".formField").blur(function() {
		if($(this).val() == "") {
			$(this).addClass("prompt");	
			$(this).val($(this).attr("title"));		
		}
	});
}