jQuery(window).bind('load', function () {
   jQuery('img.fade').crossfade({
                'type' : 'mouseenter',
                'delay' : 500,
                'callback' : function () {
                   var id=jQuery(this).parents("div:first").attr("id");
                   jQuery("#normaltext").stop(true,true).hide();                   
                   jQuery("#"+id+"i").fadeIn();
                 },
                'condition' : function () { return true; }
            },{
                'type' : 'mouseleave',
                'delay' : 1000,
                'callback' : function () {
                   var id=jQuery(this).parents("div:first").attr("id");
                   jQuery("#"+id+"i").fadeOut();
                   jQuery("#normaltext").stop(true,true).fadeIn();
                 },
                'condition' : function () { return true; }
            });
});

jQuery(document).ready(function(){
   //jQuery.backstretch("images/portalbck.jpg");
   jQuery("#pi1").click(function(){
       window.open("http://mh3.reign-of-the-rathalos.com/creator");
   });
   jQuery("#pi6").click(function(){
       window.open("http://mh3.reign-of-the-rathalos.com/wall");
   });
   jQuery("#pi2").click(function(){
       window.open("http://mh3.reign-of-the-rathalos.com/data");
   });
   jQuery("#pi3").click(function(){
       window.open("http://mh3.reign-of-the-rathalos.com/calc");
   });
   
   jQuery("#pi8").click(function(){
       window.open("http://mh3.reign-of-the-rathalos.com/photoalbum");
   });

   tweetMemeButton();
   //$('#countdown').tzineClock();
});

