﻿$(function() {
	
	$('div#gallery-thumb ul li a').click(function() {
        $('div#gallery-thumb ul li a').removeClass('selected');
        $(this).addClass('selected');

        var imageName = $(this).attr('href');
		$('div#gallery-image').attr('style', 'background:url(' + imageName + ') no-repeat center center;');
	});	
	
	$('div#gallery-thumb ul li a').click(function() {
        return false;
    });
	
	$('div#gallery-thumb ul li a').click(function() {	
		var captionTxt = $(this).attr('alt');
		
		// Caption text
		$('div#caption-txt span').remove();
        $('div#caption-txt')
			.prepend('<span>' + captionTxt + '</span>')
			.children('span')
			.fadeIn(500)
			.fadeto(200, .6);
    });
	
	var caption_txt = "#gallery-caption";
	
	$("#gallery-image-hldr").hover(
		
		function(){
			$(caption_txt).stop().animate({bottom:"0px"}, 500); 
		}, 
		
		function(){
			$(caption_txt).stop().animate({bottom:"-100px"}, 500); 
		}
	
	);
	
});