$(document).ready(
		function(){
			img=$('#content a img');
						
			img.parent().each(function() {
				if($(this)[0].tagName=='A'){
					$(this).addClass('highslide');
				}
			})
			
			$('#gallery a').attr("class","");
			
			if (img.length >1){
					img[0].parentNode.setAttribute("id", "thumb1");
					$('a.highslide').each(function() { 
						this.onclick = function() { 
							return hs.expand(this, config1); 
						}; 
					});
			}
			else{
				$('a.highslide').each(function() { 
					this.onclick = function() { 
						return hs.expand(this); 
					}; 
				});						
			}
			

	});
