$(document).ready(function(){
	$('#nextslide').hover(function(){
		$(this).delay(200).animate({right: "10px"}, 200);
	},function(){
		$(this).delay(200).animate({right: "0px"}, 200);
	})
	/*$('#slidecaption  a span').hover(function(){
		$(this).delay(200).animate({height: "150px"}, 200);
	},function(){
		$(this).delay(200).animate({bottom: "0px"}, 200);
	})*/
})

function fixHoverContainer(){
	$('.playPosition').css({opacity:0});
	$('.listThumb').hover(function(){
		$(this).animate({opacity:0.6},300);
		$(this).find('.playPosition').animate({opacity:1},250);
	}, function(){
		$(this).animate({opacity:1},300);
		$(this).find('.playPosition').animate({opacity:0},250);
		})
}

$(document).ready(function(){
	fixHoverContainer();
});

function closeColorbox(){window.parent.clickToClose();}
function clickToClose(){$('#cboxClose').click();}

