/*
 For language select in head line.
*/
jQuery(document).ready(
	function() {
			jQuery("#topframe #langmenu span").attr({style: "display:none"});
	
			jQuery("#langmenu a.imgru").hover( 
				function () {
					// Onmouseover
					jQuery("#topframe #langmenu span.flaggeru").attr({style: "display:block"});
				}, 
				function () {
					// Onmouseout
					jQuery("#topframe #langmenu span.flaggeru").attr({style: "display:none"});
				}
			
			);
			jQuery("#langmenu a.imgde").hover( 
				function () {
					// Onmouseover
					jQuery("#topframe #langmenu span.flaggede").attr({style: "display:block"});
				}, 
				function () {
					// Onmouseout
					jQuery("#topframe #langmenu span.flaggede").attr({style: "display:none"});
				}
			
			);
			jQuery("#langmenu a.imgen").hover( 
				function () {
					// Onmouseover
					jQuery("#topframe #langmenu span.flaggeen").attr({style: "display:block"});
				}, 
				function () {
					// Onmouseout
					jQuery("#topframe #langmenu span.flaggeen").attr({style: "display:none"});
				}
			
			);
	}
);
