/*
** exed.js - Exed Javascript Library
** jgriffith
**
*/

(function($){

var Exed = {
    
    domready: function() {
        Exed.search_input('Search','search_text');
    
		},
    
    
    /*
     * Handles the "search" text in the search box
     */
    
     search_input: function(text,input) {  
       input = document.getElementById(input);
       if (!input) return false;
       input.onfocus = function() {
          if (this.value == text) {this.value = "";}
       }
       input.onblur = function() {
          if (this.value == "") {this.value = text;}
       }
     }

}

window.Exed = Exed;
$(document).ready(function(){Exed.domready()});

})(jQuery);




ondragstart="return false" 
onselectstart="return false"
//
////Disable right mouse click Script
////By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
////For full source code, visit http://www.dynamicdrive.com
//
//var message="Function Disabled!";
//
/////////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

//document.oncontextmenu=new Function("alert(message);return false")
document.oncontextmenu=new Function("return false")


////function to disable F11 and F5  option in all pages so that adrees bar and other options are not available to the end user by pressing F11
//// and by pressing F5 page doesn't get refreshed
document.onkeydown = function ()
{
	if ((122 == event.keyCode)||(116== event.keyCode))
	{
		event.keyCode = 0;
		return false;
	}
}

var sc_project=3873021; 
var sc_invisible=1; 
var sc_partition=34; 
var sc_click_stat=1; 
var sc_security="38ba4113"; 

document.write(unescape("%3Cscript src='http://www.statcounter.com/counter/counter.js' type='text/javascript'%3E%3C/script%3E"));
