$(document).ready(function(){
	Cufon.replace('h2');
	$.ifixpng('/img/pixel.gif');
	$('img[src$=.png], #header #languages .right,#header #languages,#main-menu li .active').ifixpng();

   	$("a[rel=thumbnails]").fancybox({
        				'transitionIn'		: 'none',
                        'transitionOut'		: 'none',
                        'titlePosition' 	: 'over',
                        'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
   	});

	$("a[rel=fancyvideo]").click(function() {
		$.fancybox({
			'padding'       : 0, 
			'autoScale'     : false,
			'transitionIn': 'none',
			'transitionOut': 'none',
			'title': this.title,
			'titleShow' : false, 
			'width': 680, 
			'height': 495, 
			'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type': 'swf',
			'swf': {
				'wmode': 'opaque',
				'allowfullscreen'       : 'true'
			}
		});
		return false;
	});
     
});

