/*-----------------------------------------
 * Function
 *----------------------------------------*/

function showPage(url, width, height){
	height = height || 600;
	width = width || 600;
	 var Win = window.open(url,"showPage",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=yes,menubar=no,status=no,toolbar=no,location=no,left = 250,top = 50');

}


/*-----------------------------------------
 * On Document Ready
 *----------------------------------------*/
$(document).ready(function() {
	var menu = {
			
			config	: {
				path : '/images/site/' + countryCode + '/menu/'
			},	
			
			init	: function(config){
				$.extend(menu.config, config);
			},
			
			hover: function(elem){
				if(!$(elem).hasClass('active')){
					var fileName = $(elem).find('a').attr('class');
					$(elem).find('img').attr('src', menu.config.path + fileName + '-hover.png');
				}
			},	
			
			unhover: function(elem){
				if(!$(elem).hasClass('active')){
					var fileName = $(elem).find('a').attr('class');
					$(elem).find('img').attr('src', menu.config.path + fileName + '.png');
				}
			}
			
		};
		
		$('#top-menu .menu-item').hover(
			function(){
				menu.hover(this);
			},
			function(){
				menu.unhover(this);
			}
		);
			
});
