jQuery(document).ready(function() {
	// Set listener to open snapshot view
	jQuery('#snapshotLink').click(function() {
		jQuery('#snapshot-overlay, #snapshot-wrapper').removeClass('hide');

		return false;
	});

	// Set listener to close snapshot view
	jQuery('#snapshot-close').click(function() {
		jQuery('#snapshot-overlay, #snapshot-wrapper').addClass('hide');

		return false;
	});

	// Set listenter for snapshot easter egg
	jQuery('#snapshot-easter').click(function() {
		jQuery(this).addClass('hide');
		jQuery('#snapshot-container').css('background-image',
			'url(http://www.webinternational.net/assets/templates/wi/images/common/snapshot_notepad_easter.png)');
		
		return false;
	});
});

