// JavaScript Document

//ORIGINAL SCRIPT
//$('#clickme').click(function() {
//  $('#book').animate({
//    opacity: 0.25,
//    left: '+=50',
//    height: 'toggle'
//  }, 5000, function() {
//    // Animation complete.
//  });
//});

//WORKING SCRIPT - NO LOOPING
//$(document).ready(function(){
//
//	$('#clickme').click(function() {
//  $('#logos').animate({
//    opacity: 0.25,
//    right: '+=780',
//  }, 1000, function() {
//    // Animation complete.
//  });
//});
//
//});



$(document).ready(function(){

	$('#clickleft').click(function() {
  $('#logos').animate({
    right: '+=780',
  }, 1000, function() {
    // Animation complete.
  });
});

	$('#clickright').click(function() {
  $('#logos').animate({
    right: '-=780',
  }, 1000, function() {
    // Animation complete.
  });
});

});





//SAMPLE IF...ELSE FUNCTION
//function updateThumbnails(){
//	$('.gallery_thumbnails a').each(function(){
//	
//		if ( $('.gallery_preview a').attr('href') == $(this).attr('href') ){
//			$(this).addClass('selected');
//			$(this).children().css('opacity', '.4');
//		}else{
//			$(this).removeClass('selected');
//			$(this).children().css('opacity', '1');
//			
//		}
//		
//	});
//	
//}
