// JavaScript Document
jQuery(document).ready(function($){ 
	
	$('#htHolder').append("<img src='" + $('.htNav img').eq(0).attr('big') + "' />");
		$('#htHolder').append('<label>' +  $('.htNav img').eq(0).attr('title') + '</label>');
		$prevNav = $('.htNav').eq(0).clone();
		$prevNav.bind('click',function(e){
			clickEvent($(this));
		});
		$('.htNav').eq(0).remove();
		$('.htNav').click(function(){
			clickEvent($(this));
		});
	function clickEvent($obj){
		$('#htHolder label').remove();
		$('#htNavWrapper div').eq(0).append($prevNav);	
		$('#htHolder').append("<img src='" + $obj.children('img').attr('big') + "' />");
		$('#htHolder').append('<label>' +  $obj.children('img').attr('title') + '</label>');
		$prevNav = $obj.clone();
		$prevNav.bind('click',function(e){
			clickEvent($(this));
		});
		$obj.remove();
	}
});

