<!--
/* <documentation about="ABOUT ~/javascript/default.js" type="GENERAL">
	<summary>This file is the default javascript file for the _Default app: 
	    it contains methods, calls and variables for all _Default pages
		Structure of this file:         
		1. Implementation of namespace _Default 
		2. Definition global variables
		3. _Default.init(): start javascript app
		4. Specific functions
		5. Call _Default.init
		This file depends on all jQuery libraries (jquery.js, ui.core.js, jquery.scrollTo.js, ui.slider.js).
	</summary>
	<namespace>_Default</namespace>
</documentation> */
var _Default = {};

 /* <documentation about="jQuery.noConflict()" type="Function call">
	<summary>Function is called to avoid conflicts among jQuery and other javascript used</summary>
</documentation> */
jQuery.noConflict();

/* <documentation about="Global variables" type="global variables">
	<summary>Global variables</summary>
	<namespace>_Default</namespace>
</documentation> */



/* <documentation about="_Default.init" type="init function">
	<summary>All calls made to functions used on every page of the _Default App (except for popup pages). 
	    It is initialized on document ready. </summary>
	<namespace>_Default</namespace>
</documentation> */
_Default.init = function() {
    _Lib.addOpenInLinksNewWindow();              //makes <a href="#" type="new-window"> op in new window
}


/* <documentation about="jQuery(document).ready()" type="function call">
	<summary>Executes init function in document ready</summary>
</documentation> */ 
jQuery(document).ready(function(){ _Default.init(); });     

	
//-->

