function newsletter()
{
	/*$('.news-input').focus(function(){ 	if($(this).val()=='Enter your Email'){$(this).val('');}
	});	
	$('.news-input').blur(function(){ 	if($(this).val()==''){$(this).val('Enter your Email');}
	});*/
	
	$('.name').focus(function(){ 	if($(this).val()=='Enter your Name'){$(this).val('');}});	
	$('.name').blur(function(){ 	if($(this).val()==''){$(this).val('Enter your Name');}});
	
	$('.email').focus(function(){ 	if($(this).val()=='Enter your Email'){$(this).val('');}});	
	$('.email').blur(function(){ 	if($(this).val()==''){$(this).val('Enter your Email');}});	
	
	$('.phone').focus(function(){ 	if($(this).val()=='Enter your Phone'){$(this).val('');}});	
	$('.phone').blur(function(){ 	if($(this).val()==''){$(this).val('Enter your Phone');}});	
	
	$('.zip').focus(function(){ 	if($(this).val()=='Enter Zip Code'){$(this).val('');}});	
	$('.zip').blur(function(){ 		if($(this).val()==''){$(this).val('Enter Zip Code');}});	
	
}

function scheduleAppointment()
{
	var myapply = $('.applying:checked').val();
	//alert (myapply);
	if(myapply=='Schedule Appointment')
	{
		$('.forAppointment').show();
	}
	else
	{
		$('.forAppointment').hide();
	}	
}
