$(window).ready(function(){
	// Label inside
	$('label.inside').each(function(index, label){
		$(label).parent('form').find('input[id='+$(label).attr('for')+']').bind({
			'focus': function() {
				$(this).addClass('focus');
				if ($(this).val()==$(label).html()) $(this).val('');
			},
			'blur': function() {
				$(this).removeClass('focus');
				if ($(this).val()=="") $(this).val($(label).html());
			}
		});
	});
})
