Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/iws8/html/mcell/backup/
Upload File :
Current File : /var/www/html/mmishra/iws8/html/mcell/backup/top.php

<?php 
include "template.php";


/**

This page only contains content.  

It creates a Top level object and assigns content to it.  
It then passes the object to a function which is included 
in "template.php" to display that content.  

*/

$top = new Top;

$top->title = "Top Level Example";
$top->keywords = "OIT, Rutgers Computing Services, PHP, Websites, Toolkit";
$top->description = "Getting the new RU Website Look with PHP";

// ----- START Menu On Left --------------------------

// CHANGE THE FOLLOWING LINKS TO SUIT YOUR NEEDS

	$jump_to = array(
"http://admissions.rutgers.edu/" => "Undergraduate Admissions", 
"http://gradstudy.rutgers.edu/" => "Graduate Admissions", 
"http://ce1766.rutgers.edu/" => "Continuous Education", 
"http://www.rutgers.edu/Departments/AcademicServers.shtml" => "Academic Depts.", 
"http://www.rutgers.edu/menus/administrative-units.shtml" => "Administrative Units", 
"http://www.rutgers.edu/menus/rescenters.shtml" => "Centers & Institutes", 
"http://www.rutgers.edu/aboutru/colleges" => "Colleges", 
"http://www.rucs.rutgers.edu/" => "Computing", 
"http://www.rutgers.edu/menus/faculties.html" => "Faculties", 
"http://gradstudy.rutgers.edu/grad-schools.html" => "Graduate Schools", 
"http://www.libraries.rutgers.edu/" => "Libraries", 
"http://uc.rutgers.edu/news/" => "Rutgers Daily News", 
	);

	$ru_main = array(
"http://www.rutgers.edu/about-the-university.shtml" => "About The University", 
"http://www.rutgers.edu/academics.shtml" => "Academics", 
"http://www.rutgers.edu/research.shtml" => "Research", 
"http://athletics.rutgers.edu/" => "Athletics", 
"http://www.rutgers.edu/news-media.shtml" => "News & Media", 
"http://www.rutgers.edu/nj-resources.shtml" => "NJ Resources", 
"http://www.rutgers.edu/prospective-students.shtml" => "Prospective Students", 
"http://www.rutgers.edu/current-students.shtml" => "Current Students", 
"http://www.rutgers.edu/faculty-staff.shtml" => "Faculty & Staff", 
"http://www.alumni.rutgers.edu/" => "Alumni", 
"http://support.rutgers.edu/" => "Online Donors", 
"http://www.rutgers.edu/visitors.shtml" => "Visitors & the Public",
	);

// sum up menu on left 

$top->bar_links = array( 
		"RU Main Menu:  " => $ru_main, 
		"Jump to:  " => $jump_to, 

);	

// ----- END Menu On Left --------------------------



// $top->questions = "mailto:webmaster@nbcs.rutgers.edu";
$top->questions = "http://www.rutgers.edu/questions.shtml";

$top->path_to_title_image = "../header.png";
$top->title_image_width = "350";
$top->title_image_height = "100";

// ---- START Main message -------------------------


$top->content = "

Put some descriptive information about your department here.  
Put some descriptive information about your department here.  
Put some descriptive information about your department here.  
Put some descriptive information about your department here.  

";

// ---- END Main message -------------------------


// ----- START Box Links On Left --------------------------

// CHANGE THE FOLLOWING LINKS TO SUIT YOUR NEEDS

	$left1 = array(
"http://www.rucs.rutgers.edu/" => "Computing Services Link", 
"http://www.nbcs.rutgers.edu/" => "Computing Services Link", 
"http://www.rci.rutgers.edu/" => "Computing Services Link", 
"http://www.eden.rutgers.edu/" => "Computing Services Link", 
	);

	$left2 = array(
"http://www.rucs.rutgers.edu/" => "Computing Services Link", 
"http://www.nbcs.rutgers.edu/" => "Computing Services Link", 
"http://www.rci.rutgers.edu/" => "Computing Services Link", 
"http://www.eden.rutgers.edu/" => "Computing Services Link", 
	);

// sum up menu on left 

$top->left_links = array( 
		"Left Link Box 1" => $left1,
		"Left Link Box 2" => $left2,
);	

// ----- END Boxs Link On Left --------------------------

// ----- START Box Links On Right --------------------------

// CHANGE THE FOLLOWING LINKS TO SUIT YOUR NEEDS


	$right1 = array(
"http://www.rucs.rutgers.edu/" => "Computing Services Link", 
"http://www.nbcs.rutgers.edu/" => "Computing Services Link", 
"http://www.rci.rutgers.edu/" => "Computing Services Link", 
"http://www.eden.rutgers.edu/" => "Computing Services Link", 
	);

	$right2 = array(
"http://www.rucs.rutgers.edu/" => "Computing Services Link", 
"http://www.nbcs.rutgers.edu/" => "Computing Services Link", 
"http://www.rci.rutgers.edu/" => "Computing Services Link", 
"http://www.eden.rutgers.edu/" => "Computing Services Link", 
	);

// sum up menu on left 

$top->right_links = array( 
		"Right Link Box 1" => $right1,
		"Right Link Box 2" => $right2,
);	

// ----- END Boxs Link On Right --------------------------

// ---- START picture ----------------------

// Uncomment the following if you want to insert a picture 

// $top->path_to_picture = "student.jpg";
$top->picture_width = "110";
$top->picture_height = "72";
$top->picture_title = "Students in NBCS CCF Lab.  ";
$top->picture_desc = "Students in NBCS <br>CCF Lab.  ";

// ---- END picture ----------------------

$top->email = "help@nbcs.rutgers.edu";

// ---------------------------------------------------

// display page with all of the above properties 

top_level($top);

?>