$(document).ready(function(){
	$('.scroller').jScrollPane({verticalDragMinHeight: 36,verticalDragMaxHeight: 36});
	
	
	$("#fname").bind(
							   {
								focusin: function() { 
								if($(this).attr('value') == 'Имя'){ $(this).attr('value', ''); }
								},
								focusout: function() { 
								if($(this).attr('value') == ''){ $(this).attr('value', 'Имя'); }
								}
							   });
	$("#femail").bind(
							   {
								focusin: function() { 
								if($(this).attr('value') == 'E-mail'){ $(this).attr('value', ''); }
								},
								focusout: function() { 
								if($(this).attr('value') == ''){ $(this).attr('value', 'E-mail'); }
								}
							   });
	$("#fmessage").bind(
							   {
								focusin: function() { 
								if($(this).html() == 'Сообщение'){ $(this).html(''); }
								},
								focusout: function() { 
								if($(this).html() == ''){ $(this).html('Сообщение'); }
								}
							   });
	
});
