$(document).ready(function() {
  $.ifixpng('/images/blank.gif');
  $('.png').ifixpng();
  $('.horse_img img').bind("mouseover", function(){
    $(".horse_img img").stop();
    var id = $(this).parent().parent().attr("id");
    // name, img
    $(".horse_item_a").removeClass("horse_item_a");
    $("#" + id).addClass("horse_item_a");
    // text
    $(".horse_text .horse_text_item").hide();
    $("#" + id + "t").show();
  });
	$('.thumb_list a').bind('click', function(){
		$('#img_b').attr({
			src: $(this).attr('href'),
			width: ar_img[$(this).attr('id')]["width"],
			height: ar_img[$(this).attr('id')]["height"]
		});
	  return false;
	});
	$('#contact_link a').bind('click', function(){
	   $('.contact').toggle();
	   return false;	   
  });
});


