// In case you don't have firebug...if (!window.console || !console.firebug) {	var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];	window.console = {};	for (var i = 0; i < names.length; ++i) window.console[names[i]] = function() {};	}	(function($)	{		$(document).ready(function()		{			// This value can be true, false or a function to be used as a callback when the closer is clciked			$.jGrowl.defaults.closer = function() 			{				console.log("Closing everything!", this);			};						// A callback for logging notifications.			$.jGrowl.defaults.log = function(e,m,o) {			$('#logs').append("<div><strong>#" + $(e).attr('id') + "</strong> <em>" + (new Date()).getTime() + "</em>: " + m + " (" + o.theme + ")</div>")			}										//---------------- Start Editing from here only -----------------------$.jGrowl("Branches:  Automobile, Mehcanical, Criteria: BE Agg. 60% and above ", { header: 'AMW (Asia Motor Works), 10th March ,2010, time: 9.30 am onwards. ', sticky: true });//$.jGrowl("description", { header: 'header', sticky: true });			/*$.jGrowl("<a href='download/LDCE Placement Cell.pps' style='color:#00ffff;font-weight:normal;' target='_blank'> <img style='border: 0px;padding-top:5px;' src='images/icons/info.png'>  Download</a>", { header: 'Registration Guide for 2010 Batch', sticky: true });	$.jGrowl("<a href='ugform.php' style='color:#00ffff;font-weight:normal;'>Registration of 2010 already started. Please get your activation code from your co-ordinator</a>", { header: 'LDCE Placement - Registration', sticky: true });*//*$.jGrowl("Date: 2nd May, 2009 11:30am          Venue:Enterprenurship Development Institute, Bhat, Gandhinagar", { header: 'GD of Gujarat Maritime Board', sticky: true });*///Copy the this Template Notice and paste above this then remove ///*$.jGrowl("Notice Content", { header: 'Fill up form for WAPCOS.Check placement notice board for further details. Last date 13th April 2009', sticky: true });*/$.jGrowl.defaults.closerTemplate = '<div>hide all notifications</div>';//-------------- End  of Notices --------------------------------});})(jQuery);