		$(document).ready(function() {

			$("a.fancybox").fancybox({
				'titleShow'		: true,
				'titlePosition'		: 'over'			
			});
			
			$(".frame").fancybox({
				'titleShow'			: false,								 
				'width'				: '80%',
				'height'			: '80%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'onClosed': 		function() {
					parent.location.reload(true);
				}
			});				
					
			$(".frame_small").fancybox({
				'titleShow'			: false,
				'autoScale'			: false,
				'width'				: 330,
				'height'			: 500,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe',
				'onClosed': 		function() {
					parent.location.reload(true);
				}				
			});						
			
			
		});
