// Full screen background load

/*
$.backstretch("img/home_page/holdingbg.jpg",
	{	centeredX: true,         // Should we center the image on the X axis?
    centeredY: true,         // Should we center the image on the Y axis?
    speed: 500                // fadeIn speed for background after image loads (e.g. "fast" or 500)
	}
);
*/   

$.backstretch("img/home_page/holding_page_new_1.jpg",
	{	centeredX: true,         // Should we center the image on the X axis?
    centeredY: true,         // Should we center the image on the Y axis?
    speed: 500                // fadeIn speed for background after image loads (e.g. "fast" or 500)
	}
);

     
jQuery(document).ready(function($) {
       
	$('#age form input[type=text]').focus(function()
	{
//            $(this).select();
            if($(this).val() == 'DD' || $(this).val() == 'MM' || $(this).val() == 'YYYY')
                $(this).val('');
	});
	$('#age input#dd').blur(function()
	{
            if($(this).val() == '')
                $(this).val('DD');
            else
                $('#mm').focus();
	});
	
	$('#age input#mm').blur(function()
	{
            if($(this).val() == '')
                $(this).val('MM');
            else
                $('#yy').focus();
	});
	$('input#yy').blur(function()
	{
            if($(this).val() == '')
                $(this).val('YYYY');
	});
});


