function slaydshowe(id){
  if ($('#lyer_'+id).css('display') == 'none'){
	$('.pop_up_layer').hide(250);
	$('.pop_up_ul > li').css('z-index', '');
	$('#lyer_'+id).show(250);
	$('#lyer_'+id).parent().css('z-index', 10);
  }
  else
  {
	$('#lyer_'+id).hide(250);
  }
  return false;
}

/*$(document).ready(
	function(){
	}
);

/* shadow for images /
function shadoweImg(){
//$("div.imgShadow").prepend('1111111111111111111111111111111111111111111');
//$("div.imgShadow").append('22222222222222222222222222222222222222222222');
var img = $('img.imgShadow');
//alert (img);
$('div.imgShadow').html('<table  border="0" cellspacing="0" cellpadding="0"><tr><td width="8" height="6" style="background-position:left top">&nbsp;</td><td style="background-position:-8px top">&nbsp;</td><td width="25" style="background-position:right top">&nbsp;</td></tr><tr><td style="background-position:left -6px">&nbsp;</td><td style="background-color:#FFF">'+img+'</td><td style="background-position: right -6px">&nbsp;</td></tr><tr><td height="12" style="background-position:left bottom">&nbsp;</td><td style="background-position:-7px bottom">&nbsp;</td><td style="background-position:right bottom">&nbsp;</td></tr></table>');
}*/
///////////////////////////////////////
//            PROMO BANNER
///////////////////////////////////////
var el_focus=1;
function gaalCill(action){
//alert(el_focus);
	var el_col=$('a.a_client').length;
	if(action=='next'){
		$('#cill_'+el_focus).animate({
			opacity: 'hide'
		}, 500);
		$('#cill_title_'+el_focus).css('display','none');
		if(el_focus==el_col){
			el_focus=0;
		}

		el_focus++;
		$('#cill_'+el_focus).animate({
			opacity: 'show'
		}, 500);
		$('#cill_title_'+el_focus).css('display','block');
		return false;
	}
	if(action=='prev'){
//alert(el_focus);
		$('#cill_'+el_focus).animate({
			opacity: 'hide'
		}, 500);
		$('#cill_title_'+el_focus).css('display','none');
		if(el_focus==1){
			el_focus=el_col+1;
		}
		el_focus--;
		$('#cill_'+el_focus).animate({
			opacity: 'show'
		}, 500);
		$('#cill_title_'+el_focus).css('display','block');
		return false;
	}
}
