$(document).ready(function(){

	/* This is basic - uses default settings */

	$("a.image").fancybox({

	autoSize	: false,
	fitToView	: false,
	padding		: 0,

 		helpers: {
              		title : {
                 	 type : 'float'
            	  }
          	}

      	});
	
	$("a.single_image").fancybox({

	autoSize	: false,
	fitToView	: false,
	width		: 640,
	height		: 360,
	padding		: 0,
	arrows		: false,

 		helpers: {
              		title : {
                 	 type : 'float'
            	  }
          	}
	
	});	

	$("a.single_image_autoSize").fancybox({
	
	autoSize	: true,
	fitToView	: true,
	padding		: 0,
	arrows		: false,

 		helpers: {
              		title : {
                 	 type : 'float'
            	  }
          	}
	
	});	

	$("a.single_image720").fancybox({

	autoSize	: false,
	fitToView	: false,
	width		: 720,
	height		: 480,
	padding		: 0,
	arrows		: false,

 		helpers: {
              		title : {
                 	 type : 'float'
            	  }
          	}
	
	});	

	$("a.single_image687x453").fancybox({

	autoSize	: false,
	fitToView	: false,
	width		: 687,
	height		: 453,
	padding		: 0,
	arrows		: false,

 		helpers: {
              		title : {
                 	 type : 'float'
            	  }
          	}
	
	});	

});


