// JavaScript Document
jQ(document).ready(function() {
	
	
	jQ(".various").fancybox({
		maxWidth	: 800,
		maxHeight	: 600,
		fitToView	: true,
		width		: '70%',
		height		: '65%',
		autoSize	: true,
		closeClick	: false,
		openEffect	: 'none',
		closeEffect	: 'none',
		scrolling	: 'auto',
		topRatio:	'0'
	});
	
	//IE7 z-index fix
	
	jQ(function() {
	var zIndexNumber = 1000;
	jQ('div').each(function() {
		jQ(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});
	
	
	
	
	
});
