// JavaScript Document
// manjographics / famefabrik / compete court

$(document).ready(function(){
						   
//	$("#something").click(function() { 
//								   
//	});	
	
/* User Agent (Browserkennung) auf einen bestimmten Browsertyp prüfen */  
     function checkBrowserName(name){  
       var agent = navigator.userAgent.toLowerCase();  
       if (agent.indexOf(name.toLowerCase())>-1) {  
         return true;  
       }  
       return false;  
     }  
if(checkBrowserName('MSIE')){  

$('#iealert').fadeIn();
$('#iealert').html('<strong>This site will not work correct in your browser.</strong> Please geht one of those free and better alternatives: <a href="">safari</a>, <a href="#">firefox</a> or <a href="#">opera</a>');

};
	
});


