$(document).ready(function() {
	
	// Set the opacity upon visiting the site
   	$(this).find(".site-select_text").slideUp(1);
	$(this).find(".site-select_text").fadeTo(500, 0);
	
	// Hover action
	$(".site-select").hover(function() {
		
		// Animate on mouse over
		$(this).find(".site-select_text").animate({
			opacity: 1,
			height: 'toggle'
		}, 300);
		
	}, function() {
		
		// Animate out
		$(this).find(".site-select_text").animate({
			opacity: 0,
			height: 'toggle'
		}, 300);
	});
});
