/**
 * @author marx date:2008/6/27
 */

$(document).ready(function(){


  $('#container-2 > ul').tabs({
    event: 'mouseover'
  });
 
  var ratio = 1; th =tw = 0; 
  $("#gallery").find("img").each(function(i){ $(this).hover( function(){ 
    
/*
$("#bimg").empty().html("<img src='"+$(this).attr("src").replace("\/small",'')+"' border='1' />").find("img").each(function(i) {
	h = $(this).height();
	w = $(this).width();
	
	
	if(w >240) {
	ratio = 240/w  ; tw = 240 ; if( (h*ratio)>300) { th=300; tw = 240*(300/(h*ratio)); } else { tw=w; th= (h*ratio);}
	
	}else {
		tw = w;
		th = h;
	} 
	
	  $(this).attr("height",th);
	  $(this).attr("width",tw);
																															   
});
*/
	
	$("#bimg").empty().html("<img src='"+$(this).attr("src").replace("\/small",'')+"' />");
	}, function(){; }) });

});