/* Hover Function for hover_content.css Content Pictures
 * description: the div that is growing up, if the mouse hovers over ...
 */

/*Team MergedLayout*/

$(document).ready(function() {
	$(".team_pictures div span").hide();
	$(".team_pictures div").hover(function(){
    	$(this).children("span").slideToggle(250,'swing');
	});
});

/*Toolbox MergedLayout*/

$(document).ready(function() {
	$(".toolbox_pictures div span").hide();
	$(".toolbox_pictures div").hover(function(){
    	$(this).children("span").slideToggle(250,'swing');
	});
});

/*Showcase MergedLayout*/

$(document).ready(function() {
	$(".showcase_pictures div span").hide();
	$(".showcase_pictures div").hover(function(){
    	$(this).children("span").slideToggle(250,'swing');
	});
});


