$('document').ready(function() {
    
    $('#seeallworkbtn').mouseenter( function(e) {
	var btn = $(this);
	var sticker = $('#sweetsticker');

	sticker.show();
	sticker.stop().animate({
	    'opacity'	:'1', 
	    'margin-top':'24px',
	    'margin-left':(btn.width() / 2)+ 'px'
	}, 200, 'easeOutCirc');
    }).mouseleave( function(e) {
	var btn = $(this);
	var sticker = $('#sweetsticker');
	sticker.stop().animate({
	    'opacity'	:'0', 
	    'margin-top':'10px',
	    'margin-left':(btn.width() / 3)+ 'px'
	 }, 200, 'easeInCirc', function() {
	     sticker.hide();
	 });
    });
    $('a#home').addClass('activehome');
    $('a.mfhome').addClass('mfselected');
});


$(window).load( function() {
    
    var header = $('#main-header');
    header.css({'opacity':'0', 'display':'block'});
    header.stop().animate({'opacity':'1'}, 500);
});

