// JavaScript Document
$(document).ready(function(){
	  
	$('#content1').hide();
	$('#content2').hide();
	$('#content3').hide();
	$('#content4').hide();
   
   	$('a#srs').click(function(){
		$('#content1').show('slow');
		$('#content2').hide('slow');
		$('#content3').hide('slow');
		$('#content4').hide('slow');
   });
	
   	$('a#lrs').click(function(){
		$('#content1').hide('slow');
		$('#content2').show('slow');
		$('#content3').hide('slow');
		$('#content4').hide('slow');
   });
   
   $('a#scs').click(function(){
		$('#content1').hide('slow');
		$('#content2').hide('slow');
		$('#content3').show('slow');
		$('#content4').hide('slow');
   });
   
   $('a#lcs').click(function(){
		$('#content1').hide('slow');
		$('#content2').hide('slow');
		$('#content3').hide('slow');
		$('#content4').show('slow');
   }); 
     
   $('a#srsclose').click(function(){
   		$('#content1').hide('slow');
		})

   $('a#lrsclose').click(function(){
   		$('#content2').hide('slow');
		})
   
   $('a#scsclose').click(function(){
   		$('#content3').hide('slow');
		})
	  
   $('a#lcsclose').click(function(){
   		$('#content4').hide('slow');
		})
 	  });

$jx (document).ready(function(){	
	$jx ("#slider").easySlider({
		auto: true, 
		continuous: true
	});
});	


