$(function() {

	// load the media1 window
	$('a.media1').click(function(){

		// scroll to top
		$('html, body').animate({scrollTop:0}, 'fast');

		// before showing the media1 window, reset the form incase of previous use.
		$('.success, .error').hide();
		$('form#mediaForm').show();
		
		// Reset all the default values in the form fields
		$('#name').val('Your name');
		$('#email').val('Your email address');
		$('#comment').val('Enter your comment or query...');

		//show the mask and media divs
		$('#mask').show().fadeTo('', 0.7);
		$('div#media').fadeIn();

		// stop the media1 link from doing its default action
		return false;
	});

	// close the media1 window is close div or mask div are clicked.
	$('div#close, div#mask').click(function() {
		$('div#media, div#mask').stop().fadeOut('slow');

	});

	$('#mediaForm input').focus(function() {
		$(this).val(' ');
	});
	
	$('#mediaForm textarea').focus(function() {
        $(this).val('');
    });

	
	
});
