jQuery.noConflict();
jQuery(document).ready(function($) {		
	/*******************************************************
	 * General JavaScript used on each page 
	 */
	
	/**
	 * Controll display effect of flyout menu 
	 */
	jQuery('#nav_main ul li').hover(
		function (){
			jQuery(this).find('.flyout_nav').fadeIn('fast');
		},
		function (){
			jQuery(this).find('.flyout_nav').fadeOut('fast');
		}
	);
	
	/**
	 * Controll display effect of fontsizer
	 */
	jQuery('#lang_switcher').hover(
		function (){
			jQuery(this).find('.picker').fadeIn('fast');
		},
		function (){
			jQuery(this).find('.picker').fadeOut('fast');
		}
	);
	
	/**
	 * Controll display effect of fontsizer
	 */
	jQuery('#font_sizer').hover(
		function (){
			jQuery(this).find('.picker').fadeIn('fast');
		},
		function (){
			jQuery(this).find('.picker').fadeOut('fast');
		}
	);
});
