$(window).load(function(){
	$('#altCol #photos .slideShow img').each(function(){
		$(this).css({
			'margin-left':	($(this).parent().parent().width() - $(this).width())/2 - 3,
			'margin-top':	($(this).parent().parent().height() - $(this).height())/2 - 3
		})
	});
})

$(document).ready(function($) {
	
	$(function() {
		$(".slideShow").jCarouselLite({
			visible: 1,
			start: 0,
			btnNext: "#btn_next",
			btnPrev: "#btn_prev",
			btnGo:	["#pager .slide_1", "#pager .slide_2", "#pager .slide_3", "#pager .slide_4"]
		});
	});
	
	$('#btn_prev, #btn_next').click(function(){
		$('#altCol #photos .slideShow img').each(function(){
			$(this).css({
				'margin-left':	($(this).parent().parent().width() - $(this).width())/2 - 3,
				'margin-top':	($(this).parent().parent().height() - $(this).height())/2 - 3
			})
		});
	})
});