﻿$(document).ready(function() {
    $(document).bind("contextmenu", function(e) {
        e.preventDefault();
    });
    
    var originator = $("body");

    if ($.browser.mozilla) {
        originator.each(function() { $(this).css({ 'MozUserSelect': 'none' }); });
    }
    else if ($.browser.msie) {
        originator.each(function() {
            $(this).bind('selectstart.disableTextSelect',
           function() { return false; });
        });
    }


    if (top.location != self.location && top.location.indexOf("google") < 0) {    
		top.location.href = "/" + escape(window.location.href); 
	} 
    /*
    else {
        originator.each(function() {
            $(this).bind('mousedown.disableTextSelect',
           function() { return false; });
        });
    }*/
});
