var img, desc;
var speed = 250;
if (typeof(is_mobile) == 'undefined') {
	$(document).ready(function () {
		$('.menu-browser .item').click(function() {
			// clear active classes
			$(this).siblings('.item').removeClass('active');
			// set current to active
			$(this).addClass('active');
			// get current infobox
			infobox = $(this).siblings('.info');
			// get img
			img  = $(this).find('.detail img').attr('src');
			// get desc
			desc = $(this).find('.detail p').html();
			// fade out infobox
			infobox.fadeOut(100,function() {
				$(this).find('img').attr('src',img);
				$(this).find('p').html(desc);
				$(this).fadeIn(100);
			});
		});
		$('.menu-browser').addClass('active');
	});
}
