<!--this java script used for header page-->
<!--this java script used for header page font navigation-->
Cufon.replace('ol', {
				textShadow: '#333 1px 1px',
				color: '-linear-gradient(white,white)',
				hover: {
					color: '-linear-gradient(black, black)',
					textShadow: '#CC3366 1px 1px'
				}
			});
<!--this java script used for header page font navigation-->
<!--this java script used for header page search-->
function areaOnFocus(element, inputText)
{
	if(element.value == inputText)
	{
		element.value='';
	}
}
function areaOnBlur(element, inputText)
{
	if(element.value=='')
	{
		element.value = inputText;
	}
}

<!--this java script used for header page search-->
<!--this java script used for header page feachered-->
$(document).ready(function() {
	
	$.featureList($("#tabs li a"), $("#output li"), {start_item:0});

	function megaHoverOver(){
		$(this).find(".sub").stop().fadeTo('fast', 1).show();
			
		//Calculate width of all ul's
		(function($) { 
			jQuery.fn.calcSubWidth = function() {
				rowWidth = 0;
				//Calculate row
				$(this).find("ul").each(function() {					
					rowWidth += $(this).width(); 
				});	
			};
		})(jQuery); 
		
		if ( $(this).find(".row").length > 0 ) { //If row exists...
			var biggestRow = 0;	
			//Calculate each row
			$(this).find(".row").each(function() {							   
				$(this).calcSubWidth();
				//Find biggest row
				if(rowWidth > biggestRow) {
					biggestRow = rowWidth;
				}
			});
			//Set width
			$(this).find(".sub").css({'width' :biggestRow});
			$(this).find(".row:last").css({'margin':'0'});
			
		} else { //If row does not exist...
			
			$(this).calcSubWidth();
			//Set Width
			$(this).find(".sub").css({'width' : rowWidth});
			
		}
	}
	
	function megaHoverOut(){ 
	  $(this).find(".sub").stop().fadeTo('fast', 0, function() {
		  $(this).hide(); 
	  });
	}


	var config = {    
		 sensitivity: 2, // number = sensitivity threshold (must be 1 or higher)    
		 interval: 100, // number = milliseconds for onMouseOver polling interval    
		 over: megaHoverOver, // function = onMouseOver callback (REQUIRED)    
		 timeout: 500, // number = milliseconds delay before onMouseOut    
		 out: megaHoverOut // function = onMouseOut callback (REQUIRED)    
	};

	$("ul#topnav li .sub").css({'opacity':'0'});
	$("ul#topnav li").hoverIntent(config);



});
<!--this java script used for header page feachered-->
<!--this java script used for header page-->



<!--this java script used for index page-->
<!--this java script used for hide and show all categories-->

	jQuery(document).ready(function(){
jQuery('#for_password1').click(function(){
	jQuery('#password_info1').slideToggle("slow")	
	
});
});
<!--this java script used for hide and show all categories-->
<!--this java script used for banner of home page-->
function gwCall(method, argStr)                             
      {                                                           
         var gwProxy = window.document.getElementById('gwProxy'); 
         if (gwProxy)                                             
         {                                                        
            gwProxy.setAttribute('gwMethod', method);             
            gwProxy.setAttribute('gwArgStr', argStr);             
            var e = document.createEvent('MouseEvents');          
            e.initEvent('click',true,true);                       
            gwProxy.dispatchEvent(e);                             
         }                                                        
      }                                                           
                                                                  
      function jsCall()                                           
      {                                                           
         var jsProxy = document.getElementById('jsProxy');        
         if (jsProxy)                                             
         {                                                        
            var jsCode = jsProxy.getAttribute('jsCode');          
            eval(jsCode);                                         
         }                                                        
      }                                                           
                                                                  
      function Gateway()                                          
      {                                                           
         var _P4r4m5_ = {};                                       
         this.addParam = function(name,value)                     
         {                                                        
            _P4r4m5_[escape(name)] = escape(value);               
         }                                                        
                                                                  
         this.callName = function(callName)                       
         {                                                        
            var paramStr = '';                                    
            for (name in _P4r4m5_)                                
            {                                                     
               paramStr = paramStr+                               
                          ((paramStr == '') ? '' : '&')+          
                          name+'='+_P4r4m5_[name];                
            }                                                     
            gwCall(callName, paramStr);                           
         }                                                        
      }                                                           
                                                                  
   function showIFrame(name, url)                                 
      {                                                           
         frames[name].location.href = url;                        
      }                                                           
                                                                  
      function createSrcScriptElement(srcPath)                    
      {                                                           
         var js = document.createElement('script');               
         js.setAttribute('type', 'text/javascript');              
         js.setAttribute('src', srcPath);                         
         document.getElementsByTagName('head')[0].appendChild(js);
      }                                                           
                                                                  
      function createInlineScriptElement(escapedJsCode)           
      {                                                           
         try{                                                     
            var js;                                               
            if(document.standardCreateElement)                    
               js = document.standardCreateElement('script');     
            else                                                  
               js = document.createElement('script');             
            js.setAttribute('type', 'text/javascript');           
            js.text = unescape(escapedJsCode);                    
            document.getElementsByTagName('head')[0].appendChild(js); 
         }																			
         catch(e){																
            //alert(document.createElement);                        
            //alert('ERROR: createInlineScriptElement(): '+e);      
         }																			
      }                                                           
                                                                  
      function invokeInGuiThread(callName, argPtr)                
      {                                                           
         var gwObj = new Gateway();                               
         gwObj.addParam('argPtr',argPtr);                         
         gwObj.callName(callName);                                
      }                                                           

<!--this java script used for banner of home page-->
<!--this java script used for index page-->


<!--this java script used for footer page-->
<!--this java script used for featured items-->
function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 2,
        wrap: 'last',
        initCallback: mycarousel_initCallback
    });
});

<!--this java script used for footer page-->
<!--this java script used for featured items-->



