Cufon.replace('h2,h3,.cl', { fontFamily: 'vlight' });
Cufon.replace('.cb,.cbs', { fontFamily: 'vbold' });
var IE7_PNG_SUFFIX = ".png";

$(function(){


//Gallery
var g = $("a.gallery");
if (g.length) {
	g.fancybox();
	$(".thumb a img").hover(
		function() { this.src = this.src.replace(/T\.jpg$/, 'H.jpg'); },
		function() { this.src = this.src.replace(/H\.jpg$/, 'T.jpg'); }
	);
}

//Reparto
var g = $("div.rep");
if (g.length) {
	g.find("a").fancybox({ autoDimensions: false, width: 560, height: 267 });
	g.find("img").hover(
		function() { this.src = this.src.replace(/\.jpg$/, '_h.jpg'); },
		function() { this.src = this.src.replace(/_h\.jpg$/, '.jpg'); }
	);
}

$("#bmenu img").hover(
	function() { this.src = this.src.replace(/\.png$/, '_h.png'); },
	function() { this.src = this.src.replace(/_h\.png$/, '.png'); }
);

$.imgpreload([
		'../img/bg_poster.jpg',
		'../img/bg_movie.jpg',
		'../img/bg_trailer.jpg',
		'../img/bg_gallery.jpg',
		'../img/bg_clean.jpg',
		'../img/paper1.png',,
		'../img/paper2.png'
	],function(){});
});

