// SLIDE
counter = 2;

function slide(folder) {
	
	$(document).ready(function(){

	// ENLARGE
	$("#enlarge").click(function() {
		Shadowbox.open({
			content: "images/front/" + folder + "/large_0" + (counter-1) + ".jpg",
			player: "img"
			});
		});		
	
	// NEXT
	$("#next").click(function() {
		if(counter < 7) { 
			counter ++;
			$("#wrapper").animate( {"marginLeft": "-=120px" }, "slow", "swing");
			}
		});	
	
	// PREV
	$("#prev").click(function() {
		if(counter != 2) { 
			counter --;
			$("#wrapper").animate( {"marginLeft": "+=120px" }, "slow", "swing"); 
			}
		});
	

	});

	}
