$(document).ready(function() {
	
	$("a.image_link").fancybox({
		'hideOnContentClick':true,
		'overlayOpacity' :.6,
		'zoomSpeedIn'    :400,
		'zoomSpeedOut'   :400,
		'easingIn'		 : 'easeOutBack',
		'easingOut'		 : 'easeInBack'
	});

	$(".fancygallery_nav #paging_back a img").mouseover(function(){
		$(this).attr("src","Files/System/gfx/tilbage_h.gif");
	}).stop().mouseout(function(){
		$(this).attr("src","Files/System/gfx/tilbage.gif");
	});

	$(".fancygallery_nav #paging_forward a img").mouseover(function(){
		$(this).attr("src","Files/System/gfx/frem_h.gif");
	}).stop().mouseout(function(){
		$(this).attr("src","Files/System/gfx/frem.gif");
	});

});

