$(document).ready(function() {
	
    //On mouse over those thumbnail	
    $('.home_content').hover(function() {
        //Display the caption
        $(this).find('div.home_content_show').stop(false,true).fadeIn(300);
    },
    function() {
        //Hide the caption
        $(this).find('div.home_content_show').stop(false,true).fadeOut(300);
    });
	
	
    $('.current').hover(function() {
        //Display the caption
        $(this).find('div.current_content').stop(false,true).fadeIn(300);
    },
    function() {
        //Hide the caption
        $(this).find('div.current_content').stop(false,true).fadeOut(300);
    });

    $('.workshop').hover(function() {
        //Display the caption
        $(this).find('div.workshop_content').stop(false,true).fadeIn(300);
    },
    function() {
        //Hide the caption
        $(this).find('div.workshop_content').stop(false,true).fadeOut(300);
    });

    $('.history').hover(function() {
        //Display the caption
        $(this).find('div.history_color').stop(false,true).fadeIn(1000);
    },
    function() {
        //Hide the caption
        $(this).find('div.history_color').stop(false,true).fadeOut(1000);
    });


    $('.ensemble').hover(function() {
        //Display the caption
        $(this).find('div.ensemble_no').stop(false,true).fadeIn(300);
    },
    function() {
        //Hide the caption
        $(this).find('div.ensemble_no').stop(false,true).fadeOut(300);
    });
 
});
