$(document).ready(function() {
	var movement = 176;
	$('#productSlider #next').click(function(){
		var thisEl = $(this).parent().find('#slides');
		
		if (!$(thisEl).is(":animated")) {
			var slidesPos = thisEl.position();
			var newPos = slidesPos.left-(movement);
			var children = thisEl.find('img').size()-2;

			if((children * -movement) == newPos) {
				newPos = 0;
			}
			
			thisEl.animate({
				left: newPos
			},400);
		}
	});

	$("#productHoverblock a").mouseenter(function() {
		var thisImg = $(this).find('img');
		if (!thisImg.is(":animated")) {
			thisImg.animate({
				top: -135
			},1);
		}
	}).mouseleave(function() {
		var thisImg = $(this).find('img');
		thisImg.animate({
			top: 0
		},1);
	});

	if ($("input[name='print_options']:checked").val() == 'print_option_4') {
		$('#print_options_other_tr').show();
	}

	$("input[name='print_options']").change(function(){
		if ($("input[name='print_options']:checked").val() == 'print_option_4') {
			$('#print_options_other_tr').show();
		}
		else{
			$('#print_options_other_tr').hide();
		}
	});
});



