/* ------------------------------------------------------------------------------------ *
| GLOBALS JS FILE :: Uaalah!!															|
| Script: globals.js																	|
| 																						|
| PROJECT :: Grupo Mediterraneo Consultores																		|
+ ------------------------------------------------------------------------------------- +
| Author :: Uaalah!!																	|
* ------------------------------------------------------------------------------------- */

$(document).ready(function(){
	$("#team ul li a").hover(
		function(){
			$(this).parents("li").find("strong").show();
		},
		function(){
			$(this).parents("li").find("strong").hide();
		}
	);
	$("#colabs ul li a").hover(
		function(){
			$(this).parents("li").find("strong").show();
		},
		function(){
			$(this).parents("li").find("strong").hide();
		}
	);
	$("#clientes ul li a").hover(
		function(){
			$(this).parents("li").find("strong").show();
		},
		function(){
			$(this).parents("li").find("strong").hide();
		}
	);
	$("#clientes ul li a.fancy").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'autoScale'		: false,
		'width'			: '50%',
		'type'			: 'iframe'
	});
	

});



