/**
 * @author Michael Robinson
 */
$(document).ready(function(){
	$(".image .image-container").blinds();
	$(".image .image-nav a").click(function(){
		var imageNum = $(this).attr('rel');

		$(this).closest('.image-nav').children('li').children('a').removeClass('selected');
		$(this).addClass('selected');

		var imageContainer = $(this).closest('.image').children('.image-container')[0];
		$.fn.blinds.showImage(imageContainer, imageNum);
		return false;
	});
});