function langMenu(obj, act){
	obj = obj.parentNode;
	if(act){
		obj.getElementsByTagName('div')[0].style.display = 'block';
	}else{
		setTimeout(function(){
			obj.getElementsByTagName('div')[0].style.display = 'none';
		}, 200);
	}
	return false;
}

$(document).ready(function(){
	$(function() {	
		$("a.colorbox").colorbox( {iframe:true, rel: false, maxWidth: 800, maxHeight: 600, innerWidth:720, innerHeight: 480} );	            
    });                                                        
});    