/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 164 2008-12-02 23:31:54Z emartin24 $
 *
 */

$(document).ready(function () {
	$('.news1').click(function (e) {
		e.preventDefault();
		$('#news1-pop').modal({autoPosition: false, containerCss:{width:'625px', top:'20px'}, position: ['20px', '20px']});
	});
	
	$('a.news2').click(function (e) {
		e.preventDefault();
		$('#news2-pop').modal();
	});
/*	
	$('a.news3').click(function (e) {
		e.preventDefault();
		$('#news3-pop').modal();
	});
*/		
	$('a.news4').click(function (e) {
		e.preventDefault();
		$('#news4-pop').modal();
	});

	$('a.news5').click(function (e) {
		e.preventDefault();
		$('#news5-pop').modal();
	});
});