			$(document).ready(function() {
						   
$('#nextpic1').click(function() {
$('#nextpic1').animate({'left' : '-243px'},300);
$('#nextpic2').animate({'left' : '0px'},300);
});

$('#nextpic2').click(function() {
$('#nextpic2').animate({'left' : '-243px'},300);
$('#nextpic3').animate({'left' : '0px'},300);
});

$('#nextpic3').click(function() {
$('#nextpic3').animate({'left' : '-243px'},300);
$('#nextpic4').animate({'left' : '0px'},300);
});

$('#nextpic4').click(function() {
$('#nextpic4').animate({'left' : '-243px'},300);
$('#nextpic5').animate({'left' : '0px'},300);
});

$('#nextpic5').click(function() {
$('#nextpic5').animate({'left' : '-243px'},300);
$('#nextpic6').animate({'left' : '0px'},300);
});

$('#nextpic6').click(function() {
$('#nextpic6').animate({'left' : '-243px'},300);
$('#nextpic7').animate({'left' : '0px'},300);
});

$('#nextpic7').click(function() {
$('#nextpic7').animate({'left' : '-243px'},300);
$('#nextpic1').animate({'left' : '0px'},300);
});

});	