function GetMSIEVersion()
{
    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE ");

    if (msie > 0)      // If Internet Explorer, return version number
      return parseInt(ua.substring(msie + 5, ua.indexOf(".", msie)))
    else                 // If another browser, return 0
      return 0;
}


$(document).ready(function() {


	$(".exoclick").click(function(){

		window.location=$(this).find("a").attr("href"); 
		return false;

	});
	

	// for ie 6:
	if (GetMSIEVersion() == 6)
	{
	  $(".exoclick").hover(
  				
 		  function () {
			  $(this).addClass("s");
  		  }, 
  	
  		  function () {
    	    		  $(this).removeClass("s");
    		  }
  	
	  );
	}

 });
 
