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