
/* http://docs.jquery.com/Tutorials:Basic_Show_and_Hide */
$(document).ready(function() {

	$('#mainrightcol_section_txtdonate').click(function() {
		$('#splash').show();
		$('#splashinner_txtdonate').show();
	});

	$('#txtdonate_box .close').click(function() {
		$('#splash').hide();
		$('#splashinner_txtdonate').hide('slow');
	});



	
	$('#mainrightcol_section_mobileupdates').click(function() {
		$('#splash').show();
		$('#splashinner_mobileupdates').show();
	});	
	
	$('#mobileupdates_box .close').click(function() {
		$('#splash').hide();
		$('#splashinner_mobileupdates').hide('slow');
	});
	

});



