/**
* Set Homepage Link plugin
*
* Copyright (c) 2009 Bibby Chung
* Blog: http://bibby.be
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* just for ie and firefox
*
* @example 
* $('#Button1').click(function() {
*  $.setHomepage('http://google.com');
* }); 
*/

jQuery.extend({
setHomepage: function(url) {
    if (document.all) {
         document.body.style.behavior = 'url(#default#homepage)';
         document.body.setHomePage(url);
        }
    }
});