jQuery('#product-tabs ul>li>a').each(
			function(){
					jQuery(this).bind('click',function(){
					var temp = new Array();
					var link = jQuery(this).attr('href');
					var temp=(jQuery(this).attr('href')).split('#');			
					var showDivId = jQuery('#'+temp[1]).attr('id');
					jQuery(this).parent().addClass('ui-tabs-selected ui-state-active');
					jQuery('#product-tabs ul>li>a').each(
						function(){
							if(link!=jQuery(this).attr('href')){
								jQuery(this).parent().removeClass('ui-tabs-selected ui-state-active');
							}						
						}
					)
					jQuery('#product-tabs >div>div').each(
					function(){
						var id = jQuery(this).attr('id');
						if(showDivId==id){
							jQuery('#'+showDivId).show();
						}else{
							jQuery('#'+id).hide();
						}
					});
				});
			}			
		);

