   $(document).ready(function(){
            
            $("#orangebutton a").blend({pulse:false});
			$("#bluebutton a").blend({pulse:false});
            
        });

    $(document).ready(function() {
        $('.samplebar-icon').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '125', left: '-10', top: '-10', width: '125'}, 100);
            $(this).children('a').children('span').fadeIn(200);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '104', left: '0', top: '0', width: '104'}, 100);
            $(this).children('a').children('span').fadeOut(200);
        });
    });// JavaScript Document
