(function($){
	$('.more','.items').click(function(){
		//$(this).parent().siblings(".panel").toggleClass("show");
		//$(this).hide();
		$(this).parent().siblings('.panel').fadeIn();
		return false;
	});
	$('.less').click(function(){
		//$(this).parent().parent().toggleClass("show");
		$(this).parent().parent().fadeOut();
		return false;
	});
	$('.tooltip').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		extraClass: "pretty",
		fixPNG: true,
		left: -120
	});
	$('.to-options').click(function(){
		$.scrollTo( '.options', 100);
	})

	
})(jQuery)