// JavaScript Document$(document).ready(function() { <!--fancyboxŠÖ” -->	/* This is basic - uses default settings */		$("a#img01").fancybox({	'overlayColor' : '#fff',	'hideOnContentClick': true,	'transitionIn'	:	'fade',    'transitionOut'	:	'fade',	'speedIn'		:	800, 	'speedOut'		:	200, 	'padding'	    :	0	});			/* Using custom settings */		$("a#inline").fancybox({		'hideOnContentClick': true	});	/* Apply fancybox to multiple items */		$("a.group").fancybox({		'padding'	    :	0,		'transitionIn'	:	'elastic',		'transitionOut'	:	'elastic',		'speedIn'		:	600, 		'speedOut'		:	200, 		'overlayShow'	:	false	});		$("a.iframe").fancybox({		'overlayColor' : '#fff',		'hideOnContentClick': true,		'width': 480,		'height': 640	});});
