$(function() {
	// jQuery Zoom stuff
	var optionsRight = {
		zoomWidth: 300,
		zoomHeight: 300,
		showEffect: 'fadein',
		hideEffect: 'fadeout',
		xOffset: 10,
		yOffset: 0,
		position: "right",
		title: false,
		alwaysOn: true
	};

	// categories
	$("#cats a").click(function(e) {
		var id = $(this).attr("href").replace('#', '');

		$.get("cat.php",
			{ c: id },
			function(data) {
				$('.items').html(data);
				$('.items img').filter(":first").click();
		});

		e.preventDefault();
	}).filter(":first").click();

	// scrollable stuff
	$(".items img").live('click', function() {
		var id = $(this).attr("class");

		$.get("image.php",
			{ i: id },
			function(data) {
				$('#sampleWindow').html(data);
				$('.si_right').jqzoom(optionsRight);
		});
	}).filter(":first").click().addClass('active');

	// init scrollable
	$("div.scrollable").scrollable({
		size: 7
	});
});