$(document).ready(function() {
	$("a.fancybox").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	var w = 640;
 	var h = 650; 			
	$("a.fancylink").fancybox({
		'frameWidth': w,
	    'frameHeight': h, 
		'overlayShow': false,
		'hideOnContentClick': false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});	
	var win_w = document.body.clientWidth - 50;
	var win_h = document.body.clientHeight - 50;
	$("a.fancywin").fancybox({
		'frameWidth': win_w,
	    'frameHeight': win_h, 
		'overlayShow': false,
		'hideOnContentClick': false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});	
});
// Finds all of the links with the fancybox class and makes the title the Alt tag of the imag within the link.
window.onload=function() {
	var aElm=document.body.getElementsByTagName('a');
	for(var i=0; i<aElm.length; i++) {
		if (aElm[i].className == "fancybox") {
			aElm[i].title = aElm[i].firstChild.alt;
		}
		if (aElm[i].className == "fancylink") {
			aElm[i].href = aElm[i].href + "?iframe";
		}
		if (aElm[i].className == "fancywin") {
			aElm[i].href = aElm[i].href + "?iframe";
		}
	}
}
