  
  
	function sendWidth(){
 
	var myWidth = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
  }
    var flash = getFlashObject();
		flash.requestJSResult(myWidth + ' :callBack');
		return myWidth;
	}
	
	function sendHeight(){
	var myHeight = 0;
  if( typeof( window.innerHeight ) == 'number' ) {
    //Non-IE
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientHeight || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientHeight || document.body.clientHeight ) ) {
    //IE 4 compatible
    myHeight = document.body.clientHeight;
  }
    var flash = getFlashObject();
		flash.requestJSResult(myHeight + ' :callBack');
   
		return myHeight;
	}


	var flash_ID = "searchEngine";
	var flash_Obj = null;
	function getFlashObject(){
		if (flash_Obj == null){
			var flashObj;
			if (navigator.appName.indexOf( "Microsoft" ) != -1){
	       	   flashObj = window[flash_ID];
	   	    } 
	   		else{
	    		 flashObj = window.document[flash_ID];
	    	}
	    	flash_Obj = flashObj;
		}
		return flash_Obj;
	}
  
  var flashvars = {};
  var params = {};
  var attributes = {};
  params.wmode = "transparent";
  attributes.id = "searchEngine";

  swfobject.embedSWF("searchEngine.swf","flashSearch", "700", "585", "9.0.0", "expressInstall.swf", flashvars, params, attributes);


jQuery(document).ready(function() {
  jQuery(".main").jScrollPane();
 });       
        
    
