     
$(document).ready(function(){

   if($.browser.msie){
      // none
   }else{
    $('.img_parceiros').fadeTo('fast', 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$('.img_parceiros').hover(function(){
		$(this).fadeTo('fast', 1.0); // This should set the opacity to 100% on hover
	},function(){
		$(this).fadeTo('fast', 0.5); // This should set the opacity back to 30% on mouseout
	});
   }

	$(".abrenormal").fancybox();
	$(".abreswf").fancybox({
		'padding'		: 0,
		'type'			: 'swf',
		'autoScale'		: false,
		'width'			: 795,
		'height'		: 450
	});
	$(".abrealbum").fancybox({
		'padding'		: 0,
		'type'			: 'swf',
		'autoScale'		: false,
		'width'			: 760,
		'height'		: 480
	});
	$(".abreiframe").fancybox({
		'width'			: 583,
		'height'		: '75%',
		'autoScale'		: false,
		'type'			: 'iframe'
	});
	$(".abreimg").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 600,
		'speedOut'		: 300
	});
	
});

// initialise custom font settings

			Cufon.replace('.content h2, .textcontent h2', { fontFamily: 'colabfont' });
			Cufon.replace('h4.dark', { fontFamily: 'colabfont' });			
			Cufon.replace('.sidebar h2, .footer h2', { fontFamily: 'colabfont' });
			Cufon.replace('.post h2', { fontFamily: 'colabfont' });