$(function(){		$image_list = $('.gallery-image-listing');		$image_list_ul = $('.gallery-image-listing > ul');				$.each( $('.thumb') , function(){								 	$(this).click(function(){													   													   $('.gallery-image img').attr('src', $(this).attr('href') );													   return false;												});// on click end								 });//thumb selection end				if( $image_list.html() != null ){			$image_list_ul.jcarousel({				vertical: true,				buttonNextEvent: 'click',				buttonPrevEvent: 'click',				start: 1		    });//end jcarousel		}//end if});