$(document).ready(function(){
	
$('html').removeClass('no-js');

$('input:text, input:password').clearDefault();

if(!$.browser.msie)
$("#gallery, #aad, .load, #prod").preloader();
	
	

$('a[href$=.jpg], a[href$=.JPG]').lightBox();

	
if($("#aad").size()){
	
	$('#aad a:not(:first)').hide();
	
	window.setInterval(function(){
		
		var now  = $('#aad a:visible');
		var next = now.next('a');
		
		now.animate({
			height: 'toggle',
			opacity: 0
		}, 1000);
		
		if(next.size())
			next.css('opacity', 0).animate({
				height: 'toggle',
				opacity: 1
			}, 1000);
		else
			$('#aad a:first').css('opacity', 0).animate({
				height: 'toggle',
				opacity: 1
			}, 1000);
		
	},6000);
	
	
	
	
}
	
	
	
	
	
// end ready()
});
