/* Initialization script */
jQuery(function(){

	jQuery('#landing .windowed')
		.click(function(event){
			event.preventDefault();
			targ = jQuery(this).attr('href');
			jQuery(targ).show();
		});
	jQuery('#content_windows a.close')
		.click(function(event){
			event.preventDefault();
			jQuery(this).closest('.window').hide();
		});

});



