$(document).ready(function(){ 
		// Gallery
		if(jQuery(".image_reel").length){

		// Declare variables
		var totalImages = jQuery(".image_reel > span").length,
			imageWidth = jQuery(".image_reel > span:first").outerWidth(true),
			totalWidth = imageWidth * totalImages,
			visibleImages = Math.round(jQuery(".window").width() / imageWidth),
			visibleWidth = visibleImages * imageWidth,
			stopPosition = (visibleWidth - totalWidth);

		jQuery(".image_reel").width(totalWidth);

		jQuery(".left").click(function(){
			if(jQuery(".image_reel").position().left < 0 && !jQuery(".image_reel").is(":animated")){
				jQuery(".image_reel").animate({left : "+=" + "878px"});
			} else {jQuery(".image_reel").animate({left : "-=" + "878px"});}
			return false;
		});

		jQuery(".right").click(function(){
			if(jQuery(".image_reel").position().left > stopPosition && !jQuery(".image_reel").is(":animated")){
				jQuery(".image_reel").animate({left : "-=" + "878px"});
			} else {jQuery(".image_reel").animate({left : "+=" + "878px"});}
			return false;
		});
		}
});
$(function(){
			$.fn.supersized.options = {  
				startwidth: 640,  
				startheight: 480,
				vertical_center: 1,
				slideshow: 1,
				navigation: 1,
				thumbnail_navigation: 1,
				transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
				pause_hover: 0,
				slide_counter: 1,
				slide_captions: 1,
				slide_interval: 4000,
				slides : [
					
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/slider_experiecias_en.jpg', alt: 'Trasportation almost free', title : 'Trasportation almost free', url : 'http://en.xcaretexperiencias.com/promotion/carnaval/?camid=ORCARNAVALEN', target:'_blank'},
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/dolphins.jpg', title : 'Live a great experience swimming with dolphins', url : 'http://en.xcaretexperiencias.com/dolphins.php' 
					, alt :'swimming with dolphins'},
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/activities.jpg', title : 'The best activities in Cancun and Riviera Maya', url : 'http://en.xcaretexperiencias.com/activities.php' 
					, alt :'Riviera Maya'},
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/xcaret.jpg', title : 'Xcaret a mixture of magic, culture and nature', url : 'http://en.xcaretexperiencias.com/xcaret.php'
					, alt :'Xcaret acuatic park'},
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/xelha.jpg', title : 'Amaze yourself with the marine life in Xel-Há!', url : 'http://en.xcaretexperiencias.com/xelha.php'
					, alt :'the most beautiful aquarium in the world'},  
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/xplor.jpg', title : 'Dare to live a great adventure in Xplor!', url : 'http://en.xcaretexperiencias.com/xplor.php'
					, alt :'Extreme activities in Xplor'},
					{image : 'http://en.xcaretexperiencias.com/images/slide-home/xichen.jpg', title : 'Be amazed with the great legacy of the Mayan culture', url : 'http://en.xcaretexperiencias.com/xpedition.php'
					, alt :'Mayan culture'}
					]
			};
	        $('#supersized').supersized(); 
	    });
