$(document).ready(function() {
	$('.rotate').cycle({	
						fx:'scrollLeft',
						pager: '#indicators',
						timeout: 5000
	});
				
	$("#brands .logo").tooltip({
						position: 'top center',
						offset: [20,0],
						effect: 'slide',
						relative: true
	});
	
	$('.tip').tooltip({
						position: 'top center',
						effect: 'slide',
						tipClass: 'tooltip_small'
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto({callback: function(){$.address.value('');}});
	
	$('#contact_form').ajaxForm({
						clearForm: true,
						success: function(){
							$('body').append('<div class="alert">Your Message has been sent!</div>');
							setTimeout("$('.alert').fadeOut()", 1000);
						}
	});
	
	scrollBy(95,0);
	
	$('#contact_form').attr('action','/');
});


