$(document).ready(function() {
	$("a.fancylightbox").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade'
	});
	$("a.film_swf").fancybox({
		'padding'       : 0,
            'autoScale'     : false,
            'transitionIn'  : 'none',
            'transitionOut' : 'none',
            'title'         : this.title,
            'width'         : 680,
            'height'        : 495,           
            'type'          : 'swf',
            'swf'           : {
                'wmode'             : 'transparent',
                'allowfullscreen'   : 'false'
            }
	});	
	$("a[rel=portfoliogroup]").fancybox({
		'titleShow'     : false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade'
	});
	
	$("a[rel=portfoliogroup2]").fancybox({
		'titleShow'     : false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade'
	});
	$("a[rel=foto_group]").fancybox({
		'titleShow'     : true,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade'
	});	
	$("a.iframebox").fancybox({
		'width'				:  800,
		'height'			:  780,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});	
});

$(document).ready(function() {
            $('.fancylightbox').each(function() {
                $(this).hover(
                    function() {
                        $(this).stop().animate({ opacity: 0.7 }, 250);
                    },
                   function() {
                       $(this).stop().animate({ opacity: 1.0 }, 250);
                   })
                });
});


