$(document).ready(function() {
	
	$('#sub_but').hover(function() {
		$(this).attr('src', 'images/learn_more_roll.jpg');
	}, function() {
		$(this).attr('src', 'images/learn_more.jpg');
	});

	$('.scroll').jScrollPane({
		scrollbarWidth: 7
	});

});




/*
	$(document).ready(function() {
		$('#a1').click(function() {
			$('#bg_container').css('background', 'url("./images/s1.jpg")');		
		});
		$('#a2').click(function() {
			$('#bg_container').css('background', 'url("./images/s2.jpg")');		
		});
		$('#a3').click(function() {
			$('#bg_container').css('background', 'url("./images/s3.jpg")');		
		});
		$('#a4').click(function() {
			$('#bg_container').css('background', 'url("./images/s4.jpg")');		
		});
		$('#a5').click(function() {
			$('#bg_container').css('background', 'url("./images/s5.jpg")');		
		});
	});
*/

