function hideAll() {
  $('#onedown').css('display','none');
  $('#twodown').css('display','none');
  $('#threedown').css('display','none');
  $('#fourdown').css('display','none');
}
function showMe(i) {
	hideAll();
	$(i).css('display','block');
}
$(document).ready(function(){
	hideAll();
  $('#one').mouseover(function(event){
	showMe($('#onedown'));
  });
  $('#two').mouseover(function(event){
	showMe($('#twodown'));
  });
  $('#three').mouseover(function(event){
	showMe($('#threedown'));
  });
  $('#four').mouseover(function(event){
	showMe($('#fourdown'));
  });
  $('#tabs').mouseout(function(event){
	//hideAll();
  });
});
