
$(document).ready(function(){
	/** styling a bit the input  on focus and blur **/
	$("div#customForm input, div#customForm textarea ").focus(function(){
		$(this).css('borderBottomColor', 'red');	
	})
	$("div#customForm input, div#customForm textarea").blur(function(){
		$(this).css('borderBottomColor', '#CCCCCC');	
	})
	
	if($("span#scrollerPoint").length)
		$.scrollTo("span#scrollerPoint");
	
	
});
