$(function(){
  $('img[src$=".png"]').each(function() { // must have quotes around .png
            this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+this.src+",sizingMethod='scale')";
        });
});
    var heartin=function(){
	$(this).stop().animate({width:"120px",height:"104px"},200);
	$("#heartwrap").stop().animate({rotate:"30deg"},200);
	$("#heart").stop().animate({opacity:".6"},200);
    };
    var heartout=function(){
	$(this).stop().animate({width:"110px",height:"94px"});
	$("#heartwrap").stop().animate({rotate:"0deg"},200);
	$("#heart").stop().animate({opacity:"1"},200);
    };
    var heartclick=function(){
      	$(this).stop()
	.animate({width:"100px",height:"84px"},400)
	.animate({width:"140px",height:"124px"},200)
	.animate({width:"100px",height:"84px"},400)
	.animate({width:"140px",height:"124px"},200)
	.animate({width:"110px",height:"94px"},200);
	$("#heartwrap").stop().animate({rotate:"0deg"},400);
	$("#heart").stop().animate({opacity:"1"},1000);
    }
$(window).load(function(){
  $("#heartimg").hover(heartin,heartout);
  $("#heartimg").click(heartclick);
});
