$(document).ready(function(){
	//CORNER
	$('div.main').corner('10px');

	//AJAX SUBMENU
	$('td.topmenu a').hover(function(){
		var str = this.rel;
		$('td.submenu').load('../images/submenu.php?id='+ str);
	});
	
	//FLAG HOVER
	$('div.lanBar a').hover(function(){
		var str = this.rel;
		$(this).parent().children('span').empty().append(str);
	}, function(){
		$(this).parent().children('span').empty()
	});
	
	//HIDE FAQ
	$('div.faq_overview div.answer div').hide();
	//FAQ EXPAND
	$('div.faq_overview div.answer h3').click(function(){
		$(this).parent().children('div').toggle();
	});
	
	$('div.faq_overview div.arrows a').click(function(){
		var str = 'faq_'+ this.rel;
		$('div.'+ str).children('div').show();
	});
})