$(document).ready(function() {
	// Move images out of a tag and put it on the same level.
	$(".ImageWrapper > a > img").each(function() {
		$(this).appendTo($(this).parent().parent());
	});
	$(".ImageWrapper > a").each(function() {
		$(this).prependTo($(this).parent().parent());
		$(this).next().appendTo($(this));
		$(this).next().appendTo($(this));
		$("<div class='post-mask'><div class='post-circle'></div></div>").prependTo($(this));
	});
	$("#sliderContainer #sliderContent .rightArrow").hover(function() {
		$("#sliderContainer .sliderBackground").stop().animate({left:"-10000000px"},{queue:false,duration:400000000});
	}, function() {
		$("#sliderContainer .sliderBackground").stop();
	});
	$("#sliderContainer #sliderContent .leftArrow").hover(function() {
		$("#sliderContainer .sliderBackground").stop().animate({left:"10000000px"},{queue:false,duration:400000000});
	}, function() {
		$("#sliderContainer .sliderBackground").stop();
	});
});
