$(function(){

	$('.hidden').hide();
	
	$('.thumbs').scroller({
		container: {
			easing: 'easeOutExpo'
		},
		options: {
			margin: 10,
			zoom: 2,
			easing: ['easeInQuart', 'easeOutElastic'],
			duration: [200, 1000]
		},
		onclick: function(a, img){
			var alt = img.attr('alt');
			$('.par').hide();
			$('.par h2').css('margin-left', -1000);
			$('#'+alt).fadeIn();
			$('#'+alt+' h2').animate({
		    marginLeft: 0
		  }, 200 );

		}
	});

	function setTooltip() {
    $('a[title]').qtip({ 
			position: {
				target: 'mouse',
	      corner: {
	         target: 'topCenter',
	         tooltip: 'topCenter'
	      },
	      adjust: {
	      	mouse:true,
	      	x:-50,
	      	y: -100
	      }
	   	},
			style: { 
				name: 'light', 
				tip: 'bottomMiddle',
				border: {
	         width: 1,
	         radius: 10,
	         color: '#ffffff'
	      	}
				},
				width: 200
		});
	}
	
	
	setTooltip();

});
