// JavaScript Document
$(document).ready(function(){
	$('input[type=text]').each(function(idx,val){
		var name = $(this).attr('name');
		$(this).wrap('<div id="jlabel_'+name+'" style="position:relative" />');									
		$('#jlabel_'+name).append('<label class="jlabel">'+name+'</label>');
		$(this).focus(function(){
			$(this).parent().find('.jlabel').fadeOut('normal');					   
		});
		$(this).blur(function(){
			if($.trim($(this).val())==''){
				$(this).parent().find('.jlabel').fadeIn('normal');	
			}
								  
		});
	});
	$('textarea').each(function(idx,val){
		var name = $(this).attr('name');
		$(this).wrap('<div id="jlabel_'+name+'" style="position:relative" />');									
		$('#jlabel_'+name).append('<label class="jlabel">'+name+'</label>');
		$(this).focus(function(){
			$(this).parent().find('.jlabel').fadeOut('normal');					   
		});
		$(this).blur(function(){
			if($.trim($(this).val())==''){
				$(this).parent().find('.jlabel').fadeIn('normal');	
			}
								  
		});
	});
	$('.jlabel').click(function(){
		$(this).parent().children(':first').focus();						
	});
	$('.jlabel').hover(
		function(){
			$(this).parent().children(':first').addClass('jlabelhover')									
		},
		function(){
			$(this).parent().children(':first').removeClass('jlabelhover')									
		}
	);						   
});
