	var $h = jQuery.noConflict();
	$h(document).ready(function(){
		var $ind=1;
		$h('#leftbut').click(function(){
		
			if($ind==2){
			$h('#contwrap').animate({marginLeft: '0px'},500);
			$ind--;
			}	
			if($ind==3){
			$h('#contwrap').animate({marginLeft: '-250px'},500);
			$ind--;
			}	
		});
		
		$h('#rightbut').click(function(){
		if($ind==2){
			$h('#contwrap').animate({marginLeft: '-500px'},500);
			$ind++;
			}
			
			if($ind==1){
			$h('#contwrap').animate({marginLeft: "-250px"},500);
			$ind++;
			}
			
			
		});
	

	});

