var current = 0;

		function ad()
		{
			setInterval("swap()", 5000);
		}
		function swap()
		{	
			if (current == 0)
			{
				$("blockquote").eq(0).fadeOut("slow", 
					function() {
						$("blockquote").eq(1).fadeIn("slow");
					});
				current = 1;
			}
			else
			{
				
				$("blockquote").eq(1).fadeOut("slow", 
					function (){
						$("blockquote").eq(0).fadeIn("slow");
				});
				current = 0;
			}	
		}

    		$(document).ready(function(){
 		  ad();
		});
		function load_anim() {
	$('#test3').crossSlide({
							  fade: 1
							}, [
							  {
								src:  'http://images2.charliescafeelmira.com/two.jpg',
								href: '',
								from: '0% 30% 1x',
								to:   '100% 30% 1x',
								time: 4
							  },  {
								src:  'http://images2.charliescafeelmira.com/three.jpg',
								href: '',
								from: 'top left 1.3x',
								to:   'bottom center 1.1x',
								time: 4
							  }, {
								src:  'http://images2.charliescafeelmira.com/four.jpg',
								href: '',
								from: 'bottom left',
								to:   'top  right 1x',
								time: 4
							  }
							]);		
}
