// JavaScript Document

if(!window.console) {
  window.console = new function() {
    this.log = function(str) {
		//alert('Console: '+str.toString()); 
	};
    this.dir = function(str) { 
		//alert('Console: '+str); 
	};
  };
}
$(document).ready(function() {
	// enable fancybox
	$('div.image a[rel=fancybox_group]').fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	//Carroucel
	$('#carroucel').carroucel();
});
