/*	When document is full loaded (ready) init
 *  dom element's behaviours and animations 
 */
  
$(document).ready(function(){
	
	var browserName=navigator.appName;
		/*
			if (browserName == 'Microsoft Internet Explorer') {
				//DO SOMETHING, example
				$(this).prev('table.hiddenRecords').css('display', 'block');
			}else{
				//DO SOMETHING ELSE, example
				$(this).prev('table.hiddenRecords').css('display', 'table');
			}
		*/
	  
}); //end ready function
