$(document).ready(function() {
	
	// Slideshow ----->
	
	$(".thumb-slideshow-box").click(function() {
		$(".thumb-slideshow-box").children(".thumb-slideshow").removeClass("selected");
		$(this).children(".thumb-slideshow").addClass("selected");
		$(".large-image-container").hide();
		$("#large-image-"+this.id).fadeIn();
		
		return false;
	});
	
	// Action!!! ----->
	
	$(".large-image-container").hover(function() {
		$(this).children(".action").show();
	}, function() {
		$(this).children(".action").hide();
	});
	
});