/* CREDITS
 * ----------------------------------------------------------
 * Title:  Main JavaScript file
 * ----------------------------------------------------------
 * Inventis - Web Architects - We design the Web!
 * www.inventis.be
*/
$(document).ready(function(){

    /* FancyBox */
    $("a.lightbox").fancybox({
        titlePosition       : 'over',
        hideOnContentClick  : true,
        centerOnScroll      : true,
		transitionIn		: 'elastic',
		transitionOut		: 'elastic'
    });

	$("a.videobox").click(function(){
        $.fancybox({
            'padding'       : 0,
            'autoScale'     : false,
            'transitionIn'  : 'none',
            'transitionOut' : 'none',
            'title'         : this.title,
            'width'         : 640,
            'height'        : 385,
            'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type'          : 'swf',
            'swf'           : {
                'wmode'           : 'transparent',
                'allowfullscreen' : 'true'
            },
            titlePosition      : 'outside',
            hideOnContentClick : false,
            centerOnScroll     : true
        });
        return false;
    });

	if($("#flash") && $("#flash").html()){
		$.fancybox({
			content: '<div class="flash">'+$("#flash").html()+'</div>'
		});
	}

});
