jQuery(document).ready(function($){
	//$('.button-download, ul.download_list li, .download').click(function(){	
//	window.location = "http://www.wedding-assistant.com/?page_id=663";
	//return false;
		//var position = $(this).offset();
		//$('.thanks').animate({'top': position.top}, 300).fadeIn(500).delay(3000).fadeOut(500);
	});
    $('.your-name #name').val('Full name:');

    $('.your-phone #phone').val('Cell Phone:');

    $('.your-email #email').val('Email:');

    $('.your-name #name').focus(function() {

        if($(this).val() == 'Full name:'){

            $(this).val('');
        }      
    });
    $('.your-phone #phone').focus(function() {

        if($(this).val() == 'Cell Phone:'){

            $(this).val('');

        }      
    });

    $('.your-email #email').focus(function() {

        if($(this).val() == 'Email:'){

            $(this).val('');

        }      
    });
    $('.your-name #name').blur(function() {

        if($(this).val() == ''){

            $(this).val('Full name:');
        }      
    });
    $('.your-phone #phone').blur(function() {

        if($(this).val() == ''){

            $(this).val('Cell Phone:');

        }      
    });
    $('.your-email #email').blur(function() {

        if($(this).val() == ''){

            $(this).val('Email:');

        }      
    });
// });	
