/* V --- SLIDESHOW GALLERY --- V */

	$(document).ready(function(){

		oCsliderV1 = {
			show1: function() {
				$('div#slider').animate({
					marginLeft: "-696px",
				},1000);
				setTimeout("oCsliderV1.show2()", 5000);
			},
			show2: function() {
				$('div#slider').animate({
					marginLeft: '-1392px',
				},1000);
				setTimeout("oCsliderV1.show3()", 5000);
			},
			show3: function() {
				$('div#slider').animate({
					marginLeft: '-696px',
				},1000);
				setTimeout("oCsliderV1.show4()", 5000);
			},
			show4: function() {
				$('div#slider').animate({
					marginLeft: '0px',
				},1000);
				setTimeout("oCsliderV1.show1()", 5000);
			}
		};
		setTimeout("oCsliderV1.show1()", 4000);

	});
