/* Calling the following jquery functions and their functionality when the document is ready
	- Fading in and out of the subscription popup
	- Having the value of the input e-mail address field emptied when clicked
	- Having the solutions page elements slide in and out
*/


// Only load this when the document loading is done
$(document).ready(function() {

	// Fade in subscribe popup when clicked
	$('.subscribe_click').click(function()
		{
			$('#subscribe_popup').fadeIn("slow");
			return false;
		} 
	);
	
	// Fade out subscribe popup when clicked
	$('.close_popup').click(function()
		{
			$('#subscribe_popup').fadeOut("slow");
			return false;
		}
	);
	
	// Empty e-mail address field when clicked
	$('.email_address').focus(function()
		{
			$(this).val('');
		}
	);	
	
	}
);
	