function ExecuteHandler(){
 ConnectLibrary.AppPath = ""; //Application Root
 ConnectLibrary.Lan = "en_gb"; //Language
 ConnectLibrary.LoadingImage = "Images/Generic/Bigrotation.gif", // Loading animation gif 
 ConnectLibrary.AssignLinks(); // Assign Links
 ConnectLibrary.AssignCssSelectors(); //Assigning css selectors
 ConnectLibrary.StretchBackgroundImage("Images/Background/background.jpg"); //Fixing th background image
 $("#Navigation").InitializeDropdown("Highlight","Active","png"); //intializing the dropdown
 //PopulateContent.Initialize("#Content","#Navigation");  // Populating the content
 $("#BgHolder").append("<div id='Pattern'></div>"); //Attaching a UI pattern to the background
 PopulateContent.CurrentSection = PopulateContent.GetCurrentSectionFromURL(); // Getting the current section from the url
 if (PopulateContent.CurrentSection ==""){
  PopulateContent.CurrentSection = "HOMENEW";
 }
	PopulateContent.LoadContent("#Content",""); //loading the content
	PopulateContent.RemoveHighlight("#Navigation"); //removing all highlight classes from the navigation
	PopulateContent.HighlightSection("#Navigation");//Highlighting the current section 
}

