  $(function() {
	$('#search').example(function() {
		return $(this).attr('title');	
	});
	$('#email').example(function() {
		return $(this).attr('title');	
	});
});
  $(function() { 
    var galleries = $('.ad-gallery').adGallery();
       $('#toggle-slideshow').click(
      function() {
        galleries[0].slideshow.toggle();
        return false;
      }
    );
  });
  $(document).ready(function() {
		$('.jquery-carousel').cycle({
			fx: 'fade'
		});
		
		
		$('form.search-input').submit(function(){
			if($(this).find('.search-textbox').val() != ''){
				window.location = base+$(this).attr('action')+$(this).find('.search-textbox').val();
			}
			return false;
		});
	});
	
	$(document).ready(function(){
		if($('.n-form').size() > 0){
			new ajaxSendForm({base: base, attachTo: $('.n-form'), succesCallback: function(data){
					$('.n-form').html($('<div>').append($('.n-form h1').clone()).remove().html()+data);
				}
			}).addCheck('email', checkEmail, function(correct, str, el, form){
					if(!correct) $('<span class="error" style="color:#ff3333;position:relative;top:-10px;margin-bottom:-10px;">The e-mail address you\'ve entered is incorrect.</span>').insertBefore(el);
			});
		}
	});
