$(document).ready(function() {
    $('#getFlags_'+flagId).cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('.logoItemBlock').bind({
        mouseenter: function() {
            $('#'+this.id+' img').css({width:'45px',height:'45px'});
            $(this).addClass('activeLogoBlock');
        }
        ,
        mouseleave: function() {
            $('#'+this.id+' img').css({width:'40px',height:'40px'});
            $(this).removeClass('activeLogoBlock');
        }
    });
    $('#languageId').click(function(){
    	$('#subLangBlock').toggleClass('displayBlock');
    });
    $(document).click(function(e){
    	if(e.target.id != 'languageId' && e.target.id != 'languageTextId' && e.target.id != 'languageImageId')
	    	if($('#subLangBlock').hasClass('displayBlock'))
	    		$('#subLangBlock').toggleClass('displayBlock');
    });
});
