
$(window).load(function() {


	// LOGO SCROLLER
	
	var width = 0;
	$('.logo_box').each(function(){
		width = width + parseInt($(this).width()) + parseInt($(this).css('margin-left')) + parseInt($(this).css('margin-right'));
	});
	$('.logo_group').width(width);
	$('#logo_slider').width(width*2);
	
	$('.logo_group').clone().appendTo('#logo_slider')
	

	animate_slider(20);
	
	//animation function
	function animate_slider(seconds)
	{
		$('#logo_slider').css('left',0);
		
		$('#logo_slider').animate(
			{left: -width},
			parseInt(width*seconds),
			//parseInt(width/$('#homepage_slideshow').width())*1000*seconds),
			'linear',
			function(){
				animate_slider(seconds);
			}
			
		);
		
	}
	
	// END OF LOGO SCROLLER


	// FADES FORM LABELS
	
	$("label").inFieldLabels();
	
	// END OF FADES FORM LABELS
	
});



















