$jq(document).ready(function(){
	
	switch($lingua){
		case 'it':
			reject_header 		= 'Sapevi che il tuo browser e\' obsoleto?';
			reject_paragraph1 	= 'Il tuo browser potrebbe non essere compatibile con le attuali funzionalita\' del nostro sito web.';
			reject_paragraph2 	= 'Qui sotto puoi trovare una lista dei browser piu\i popolari. Clicca, scarica, installa e ricarica questa pagina :)';
			reject_closeLink 	= 'chiudi questo avviso';
			reject_closeMessage = 'Utilizzando il tuo attuale browser la tua esperienza di navigazione potrebbe essere limitata.';		
			break;
		default:
			reject_header 		= 'Did you know that your Internet Browser is out of date?';
			reject_paragraph1 	= 'Your browser is out of date, and may not be compatible with our website. A list of the most popular web browsers can be found below.';
			reject_paragraph2 	= 'Just click on the icons to get to the download page :)';
			reject_closeLink 	= 'Close This Window';
			reject_closeMessage = 'By closing this window you acknowledge that your experience on this website may be degraded.';			
	}
	
	$jq.reject({  
		reject: {  
			firefox1	: true,
			safari1		: true,
			safari2		: true,
			konqueror1	: true,
			opera7		: true
		 },
		imagePath		: 'javascripts/jquery/reject/images/',
		header			: reject_header,
		paragraph1		: reject_paragraph1,
		paragraph2		: reject_paragraph2,
		closeLink		: reject_closeLink,
		closeMessage	: reject_closeMessage
	 }); 
	 return false;  
});		
