
/**
 * JS jQuery implementation
 **/
 
 jQuery(document).ready(function()
 {
    jQuery('img.fancyimage').fancybox(
    {
        'type' : 'image',
        'autoScale'	: false,
		'transitionIn' : 'fade',
		'transitionOut'	: 'fade',
		'overlayOpacity': 0.7,
        'overlayColor' : '#000',
		'href' : this.href,
        'padding' : 2,
		'titlePosition' : 'over',
        'titleFormat' : function(){ return jQuery(this).attr('title').length>0?'<div id="fancybox-title-cryocms"><span>'+jQuery(this).attr('title')+'</span></div>':''; }
    });
	
	jQuery('a.fancyimage').fancybox(
    {
        'type' : 'image',
        'autoScale'	: false,
		'transitionIn' : 'fade',
		'transitionOut'	: 'fade',
		'overlayOpacity': 0.7,
        'overlayColor' : '#000',
		'href' : this.href,
        'padding' : 2,
		'titlePosition' : 'over',
        'titleFormat' : function(){ return jQuery(this).attr('title').length>0?'<div id="fancybox-title-cryocms"><span>'+jQuery(this).attr('title')+'</span></div>':''; }
    });
 });

