$( document ).ready( function() {
	
	/*
		POPUP EVENT
	*/
	$( ".popup" ).click( function( event ) { 
		// Stop the browser from following the link
		event.preventDefault();
		
		// Grab the target of the link
		var sTarget = $( this ).attr( "href" );
		
		// Set the width and height of the popup
		var iWidth = 800;
		var iHeight = 600;
		var iScrollbars = 2;
		
		// Center the window on the clients screen
		var iLeft = (screen.width)?(screen.width-iWidth)/2:100;
		var iTop = (screen.height)?(screen.height-iHeight)/2:100;
		
		// Put the window config together
		var sSettings='width='+iWidth+',height='+iHeight+',top='+iTop+',left='+iLeft+',scrollbars='+iScrollbars+',location=yes,directories=no,status=yes,menubar=yes,toolbar=yes,resizable=yes';
		
		// Create the new window
		win=window.open( sTarget, "", sSettings );
	} );
	

	
} );
