﻿//     //this function includes all necessary js files for the application  
//     function include(file)  
//     {  
//       
//       var script  = document.createElement('script');  
//       script.src  = file;  
//       script.type = 'text/javascript';  
//       script.defer = true;  
//       
//       document.getElementsByTagName('head').item(0).appendChild(script);  
//       
//     }  
//       
//     /* include any js files here */  
//     include('jquery-latest.js'); 
//     include('tabs.js'); 
 
    (function($){
        $(document).ready(function() {
       
         // toggles the slickbox on clicking the noted link
          $('img#loginSlidetoggle').click(function() {
	        $('#loginbox').slideToggle(400);
	        return false;
          });
        });
    })(jQuery);
    
