function slidersInit(){
		//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
		//Vertical Sliding
		$('.module-post.slidedown').hover(function(){
			$(".cover", this).stop().animate({top:'-259px'},{queue:false,duration:300});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
		});
		//Horizontal Sliding
		$('.module-post.slideright').hover(function(){
			$(".cover", this).stop().animate({left:'365px'},{queue:false,duration:300});
		}, function() {
			$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
		});
		//Diagnal Sliding
		$('.module-post.thecombo').hover(function(){
			$(".cover", this).stop().animate({top:'259px', left:'365px'},{queue:false,duration:300});
		}, function() {
			$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
		});
		//Partial Sliding (Only show some of background)
		$('.module-post.peek').hover(function(){
			$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		});
		//Full Caption Sliding (Hidden to Visible)
		$('.module-post.captionfull').hover(function(){
			$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'259px'},{queue:false,duration:160});
		});
		//Caption Sliding (Partially Hidden to Visible)
		$('.module-post.caption').hover(function(){
			$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'225px'},{queue:false,duration:160});
		});
	}
			
			
$(document).ready(function () {
	slidersInit();
	$("ol li:first").addClass("first");
	$("a[rel=external]").attr("target", "_blank")
});