var shStrings = new Array();
/*shStrings =[{heading:"Record Breaking Paper Bridge (2002)",text:"The students of IIT Madras, constructed the world's longest paper footbridge, as a part of Shaastra 2002. The 11m long and 5m high bridge bore a combined weight of 650kg and entered the Limca Book of Records."},
	    {heading:"ISO Certification (2003)",text:"Shaastra has the distinction of being the first student-organized event in the world to be ISO 9001 certified, which it received atShaastra 2003 and has retained since, for its impeccable planning and execution."},
	    {heading:"Chuck Detection Software (2005)",text:"The students of IIT Madras, constructed the world's longest paper footbridge, as a part of Shaastra 2002. The 11m long and 5m high bridge bore a combined weight of 650kg and entered the Limca Book of Records."}];*/
shStrings =[{heading:"God Does Not Play Dice !",text:"Neither do we at Shaastra,first such event in the world to be ISO 9001:2008 certified"}]
	   
var noOfStrings = shStrings.length;
	   
function showSHLine(){
	var randX=Math.floor(Math.random()*noOfStrings);	 
$("#shString").html("<div id=\"shLHeading\">"+shStrings[randX]['heading']+"</div><div id=\"shLText\">"+shStrings[randX]['text']+"</div>").delay(1000);	
	$('#qOpen').fadeIn(3000);
	$('#qClose_main').fadeIn(3000);
	
}
$(document).ready(function() {
	showSHLine();
});

