







/*********************** Full Screen BG Image ****************************/

// You need to specify the size of your background image here (could be done automatically by some PHP code)
var FullscreenrOptions = {  width: 1024, height: 544, bgID: '#bgimg' };
// This will activate the full screen background!
jQuery.fn.fullscreenr(FullscreenrOptions);
			
/*********************** End Full Screen BG Image ****************************/			
			
			
			//moving from one language to another
			function redirectL()
			{
				
				var url='http://www.rmec.ie/index.asp';
				//document.lform.language.value
				if (document.lform.language.value=='fr')
				{
					url= 'http://www.rmec.ie/fr/index.asp';
				}
				else if (document.lform.language.value=='de')
				{
					url= 'http://www.rmec.ie/de/index.asp';
				}
				else if (document.lform.language.value=='sp')
				{
					url= 'http://www.rmec.ie/sp/index.asp';
				}
				else if (document.lform.language.value=='it')
				{
					url= 'http://www.rmec.ie/IT/index.asp';
				}
				
				
				document.location = url;
				
				
			}
