jQuery(document).ready(function(){
	jQuery("ul.lista-gris li").wrapInner("<div class='wrap'></div>");
	
	jQuery(".scr_thumb").hover(function (){
			var tmb = jQuery(this).attr('id').split('_')[1];
			jQuery(this).attr('src', '/Portals/0/HR_Corporate_5/screenshots/' + tmb + '_active.png');
			
		},
		function (){
			var tmb = jQuery(this).attr('id').split('_')[1];
			jQuery(this).attr('src', '/Portals/0/HR_Corporate_5/screenshots/' + tmb + '_inactive.png')
		})
		
	jQuery(".scr_thumb").click(function (){
			var tmb = jQuery(this).attr('id').split('_')[1];
			
			jQuery('#viewScreenShot').attr('src', '/Portals/0/HR_Corporate_5/screenshots/' + tmb + '_full.jpg')
	});
	
	if (jQuery("ul.sideMenu").length>0){
		var titulo= document.title;
		var $espan = jQuery("ul.sideMenu li a span:contains(" + titulo + ")")
		if ($espan.length>0){
			$espan.closest("a").addClass("selected")
		}	
	}
})
