// content slider
// from: http://www.webdeveloperjuice.com/2010/01/12/lightest-jquery-content-slider-ever-made-380-bytes/
$(document).ready(function (){
	$('#button a').click(function(){
		var integer = $(this).attr('rel');
		$('#myslide .cover').animate({
				left:-620*(parseInt(integer)-1), 
				speed:2000, 
				easing: 'jswing'
				})  /*----- left = width of div mystuff ------ */
		$('#button a').each(function(){
		$(this).removeClass('active');
			if($(this).hasClass('b'+integer)){
				$(this).addClass('active')}
		});
					return false;
	});	
});