/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){
    $(document).pngFix();
    Cufon.replace('h1, h2',{fontfamily:'harabara'});
    $("#bt_contact").hover(function() {
		$(this).addClass("hover");
                $(this).animate({top: '+=10'}, 500)
		}, function() {
			$(this).removeClass("hover");
                        $(this).animate({top: '-=10'}, 500)
		});
});
