// JQuery Entry Point
$(document).ready(function() {PageInitialize();});    

// Callback for JQUERY->Document.Ready - PageInitialize
function PageInitialize() {


/* ENABLE EFFECT FOR TOP BAR NAVIGATION   
  $('#TopNav li').hover(function (e) { //onmouseover
    $(this).toggleClass('topnav_in', 1);
  }, function(e) { //onmouseout
    $(this).toggleClass('topnav_in', 0);
  });  */
  
  
//	$('#bg').delay(1000).fadeIn('slow');
	
  /*
    prevId: 		'prevBtn',
    prevText: 		'Previous',
    nextId: 		'nextBtn',	
    nextText: 		'Next',
    controlsShow:		true,
    controlsBefore:	'',
    controlsAfter:		'',	
    controlsFade:		true,
    firstId: 		'firstBtn',
    firstText: 		'First',
    firstShow:		false,
    lastId: 		'lastBtn',	
    lastText: 		'Last',
    lastShow:		false,				
    vertical:		false,
    speed: 		800,
    auto:			false,
    pause:			2000,
    continuous:		false, 
    numeric: 		false,
    numericId: 		'controls'
*/
}

