jQuery(function(){
	/** Scroll Text Area **/
	jQuery('#scrolling_text input')
			/** when focused hide the enter your scrolling text description */
			.focus(function(){jQuery('#scrolling_text .overlay_text').hide();})
			/** when the scroll loses focus, if the value is blank show the overlay description **/
			.blur(function(){if (jQuery(this).val() == '')jQuery('#scrolling_text .overlay_text').show();});
			
	/** Faqs switching ! **/
	$('#faqs li a').click(function(){
									this.blur();
									parentli = jQuery(this).parent();
									if ($(parentli).hasClass('on'))
									{
										$(parentli).removeClass('on');
									jQuery(parentli).find('p').slideUp('slow');
									}
									else
									{
										$(parentli).addClass('on');
									jQuery(parentli).find('p').slideDown('slow');
									}
									return false;
									});
});
