

	$(document).ready(function(){
		/*Cards Animation*/
		$('#img1,#img2,#img3,#img4,#img5,#img6,#img7,#img8').width(80);
		$('#img1,#img2,#img3,#img4,#img5,#img6,#img7,#img8').tooltip({
			position: "bottom center",
			offset: [-20,20],
			opacity: 1.5,

		onShow: function() {
			this.getTrigger().animate({width: "100px"}, 'slow');
			},

		onHide: function(){
			this.getTrigger().animate({width: "80px"}, 'slow');
		}

		});


		/*Scroll*/
		$('a.panel').click(function () {

		$('a.panel').removeClass('selected');
		$(this).addClass('selected');

		current = $(this);

		$('#wrapper').scrollTo($(this).attr('href'), 800);

		return false;
	});

	/*Banners*/
	$("#slider").easySlider({
				auto: false,
				continuous: true,
				numeric: true
			});

   });



