var siteUrl = 'http://www.uniomusicalquartell.com/';
var clientPC = navigator.userAgent.toLowerCase(); // Get client info
var clientVer = parseInt(navigator.appVersion); // Get browser version

window.addEvent('domready', function(){
	var cont = $('container_fsmcv');
	cont.addClass('fumcv_loading');
	var nots = new Ajax(siteUrl+'plugins/gad_not.php?'+Math.random(),{
		  method: 'get',
		  data: 'regs=6',
		  update: cont,
		  onComplete: function() {
		  	cont.removeClass('fumcv_loading');
			var nh = $('col_right').getStyle('height').toInt() + cont.getStyle('height').toInt()-40;
			$('content_right').setStyle('height',nh+'px');
			if(clientPC.indexOf("msie") != -1 && clientPC.substr(clientPC.indexOf("msie")+5,3) == '7.0'){
				$('footer').setStyle('margin-top',450)
			}				
		  }
	});
	nots.request();
});