$(document).ready(function(){
	//Horizontal Sliding
	$('.slideright').hover(function(){
		$(".caption", this).stop().animate({left:'0'},{queue:false,duration:300});
	}, function() {
		$(".caption", this).stop().animate({left:'-34px'},{queue:false,duration:300});
	});

$('#switch_light').click(function() {
   $('.darkenBackground').toggle();
   $('#switch_dark').toggle();
});

$('.darkenBackground').click(function() {
   $('.darkenBackground').toggle();
   $('#switch_dark').toggle();
});



});



