/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 243 2010-03-15 14:23:14Z emartin24 $
 *
 */

jQuery(function ($) {
	$('#basic-modal .basic').click(function (e) {
		$('#basic-modal-content').modal();
		  return false;
	});
	$('#basic-modal-2 .basic-2').click(function (e) {
		$('#basic-modal-content-2').modal();
		  return false;
	});
	$('#basic-modal-3 .basic-3').click(function (e) {
	 alert("Prakash");
		$('#basic-modal-content-3').modal();
		  return false;
	});

	$('.downloadfile').click(function(){
		window.location = '/downloads.php?filename="'+$(this).attr('rel')+'"';								  
	});
});


