$(document).ready(function() {
	
	// Floating category description
	$("#category-description, #product").each(function() {
		$(this).stickyfloat({}, function() {
			$("#category").css('min-height', $(this).height());
		})
	});
	
	$("#products a, #techtalks a").tipTip({
		delay: 50,
		edgeOffset: -3,
		fadeOut: 400,
		maxWidth: '300px'
	});
	
	$("#techtalks a").click(function() {
		return false;
	});
	
	$("#photos a, a[rel=team]").each(function() {
		$(this).fancybox({
			centerOnScroll: true
		});
	});
	
});

