// JavaScript Document

$(document).ready(function(){
						   
	$(".pane-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});


var browserName=navigator.appName; 
var browserVersion = parseInt(navigator.appVersion);

	 if (browserName=="Microsoft Internet Explorer")
	 {
	 
		if(browserVersion >= "4" && browserVersion <= "6" )
		{
				  var newSS=document.createElement('link');
				  newSS.href = 'css/style_ie6.css';
				  newSS.rel = 'stylesheet';
				  newSS.type = 'text/css';				  	 
			      document.getElementsByTagName("head")[0].appendChild(newSS);
			 
		 }
		  else
		    {
			    var oLink = document.createElement('link');
				oLink.href = 'css/style.css';
				oLink.rel = 'stylesheet';
				oLink.type = 'text/css';
	
				if(oLink !="")
				{
				   document.getElementsByTagName("head")[0].appendChild(oLink);
				
				}
	
				  oLink = null;
		
			}
			
	 }
	 else
	  {
	       	 
	        var oLink = document.createElement('link');
			oLink.href = 'css/style.css';
			oLink.rel = 'stylesheet';
			oLink.type = 'text/css';

			if(oLink !="")
			{
			   document.getElementsByTagName("head")[0].appendChild(oLink);
			
			}

              oLink = null;
			
	   }
