function setImagesPageNavigation()
{
	// TODO: gem jQuery saa den ikke skal finde den mange gange
	$(".images_sphere_normal, .images_sphere_prev, .images_sphere_next").bind("mouseenter mouseup", function () { $(this).css("background-position", "0 -51px"); });
	$(".images_sphere_normal, .images_sphere_prev, .images_sphere_next").bind("mouseleave", function () { $(this).css("background-position", "0 0"); });
	$(".images_sphere_normal, .images_sphere_prev, .images_sphere_next").bind("mousedown", function () { $(this).css("background-position", "0 -51px"); });
}

function setImageNextPrev()
{
	$(".image_np").bind("mouseenter mouseup", function () { $(this).css("background-position", "0 -83px"); });
	$(".image_np").bind("mouseleave", function () { $(this).css("background-position", "0 0"); });
	$(".image_np").bind("mousedown", function () { $(this).css("background-position", "0 -166px"); });
}

function removeAdultWarning()
{
	$("#image_adult_container").hide();
	$("#image_container").fadeIn();
}

$(document).ready(function () {
					setImagesPageNavigation()
					});
					
$(document).ready(function () {
					setImageNextPrev()
					});
					
//$("#image_adult_link").click(function () { alert("Er det nu også rigtigt??"); removeAdultWarning(); } );
