
flag_slider=0;                 
delay=5000;


$(window).load(function(){ 
    
    my_id=setTimeout('promo_show(flag_slider)',delay);
	
	if (document.all && !window.opera) {
    if (typeof document.body.style.maxHeight == 'undefined') {
		var imgs = document.getElementsByTagName("img");
		for (i = 0; i < imgs.length; i++)
		{
			if (imgs[i].src.indexOf(".png") != -1)
			{
                imgs[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + imgs[i].src + "',sizingMethod='crop')";
                imgs[i].src="/img/0.gif";
			}
		}
	}
    }
	
	$("#menu li.li").hover(function(){ 
  		$(this).addClass("hover"); 
	},function(){ 
  		$(this).removeClass("hover"); 
	});
	
	$(".h1_title").each(function(i){ 
		var text = $(this).text();	
		var text_span = text.charAt(0);
		var text = text.substring(1,text.length);	
  		$(this).html("<span>"+text_span+"</span>"+text);
	});

	if (!$("#tray span:last").hasClass("h1_title")) $("#tray span:last").addClass("red");
	
	 $(".license").each(function(i){ 
		$(this).find("tr:odd").addClass("bg");	
	});
	
	$("#foto_one div.act a").focus(function(){
        $(this).blur();
    });
	
	if ($("#foto_one").length) {
		$("#foto_one div.img div:first").show();
    	$("#foto_one div.zoom div:first").show();
    	$("#foto_one div.text div:first").show();
		count_foto = $("#foto_one div.img div").length;
		if (count_foto>1) $("#foto_one div.act").show();
		$("#foto_one div.act span.col span.count").text(count_foto);
		flag_foto=0;
	}
	
	$("#foto_one div.act span.right a").die().live('click', function() {
		$("#foto_one div.img div").eq(flag_foto).fadeOut(500);
    	$("#foto_one div.zoom div").eq(flag_foto).hide();
    	$("#foto_one div.text div").eq(flag_foto).hide();
		flag_foto++;
		if (flag_foto==count_foto) flag_foto=0;
		$("#foto_one div.img div").eq(flag_foto).fadeIn(500);
    	$("#foto_one div.zoom div").eq(flag_foto).show();
    	$("#foto_one div.text div").eq(flag_foto).show();
		$("#foto_one div.act span.col span.counter").text(flag_foto+1);
		return false;
	} );	
	
	$("#foto_one div.act span.left a").die().live('click', function() {
		$("#foto_one div.img div").eq(flag_foto).fadeOut(500);
    	$("#foto_one div.zoom div").eq(flag_foto).hide();
    	$("#foto_one div.text div").eq(flag_foto).hide();
		flag_foto--;
		if (flag_foto==-1) flag_foto=(count_foto-1);
		$("#foto_one div.img div").eq(flag_foto).fadeIn(500);
    	$("#foto_one div.zoom div").eq(flag_foto).show();
    	$("#foto_one div.text div").eq(flag_foto).show();
		$("#foto_one div.act span.col span.counter").text(flag_foto+1);
		return false;
	} );	
	
 
});

$(document).ready(function(){	

    $("#promo div.img div:first").show();
    
    $("a.light").attr('rel', 'lightbox-photo');

});

function promo_show(number) {
    clearTimeout(my_id);    
	$("#promo div.img div").eq(flag_slider).fadeOut(500);
	flag_slider++;
	if (flag_slider==3) flag_slider=0;
	$("#promo div.img div").eq(flag_slider).fadeIn(500);
    my_id=setTimeout('promo_show(flag_slider)',delay);
}

