/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var GlOBLE_USER_MENU_ITEMS = [
							  ['Home','index.php',null],
							  ['Post Your Property','user_post_property.php',null,
							   ['Residential','user_post_property.php?parent_id=1&mother_property_id=1'],
							   ['Commercial','user_post_property.php?parent_id=2&mother_property_id=2'],
							   ['Roommates','user_post_property.php?parent_id=3&mother_property_id=3'],
							 ],
							  ['Rental Seekers','user_view_request_rental.php',null,
							     ['Post Seeker Request','user_rental_request.php'],
								 //['Advance Search','under_construction.php'],
								 ['View Rental Request','user_view_request_rental.php'],
							   ],
							  ['Property Search','index.php',null,
							     ['Quick Search','index.php'],
								 //['Advance Search','under_construction.php'],
								 //['Saved Searches','user_favorates_details.php'],
							   ],
							 // ['Manage My Posting','user_display_property.php',null],
							  ['Sign In','login.php',null],
                              //['SignUp','signin.php',null],
							 ];

var LOGEDIN_USER_MENU_ITEMS = [
							  ['Home','index.php',null],
							  ['Post Your Property','user_post_property.php',null,
							  	['Residential','user_post_property.php?parent_id=1&mother_property_id=1'],
							    ['Commercial','user_post_property.php?parent_id=2&mother_property_id=2'],
							    ['Roommates','user_post_property.php?parent_id=3&mother_property_id=3'],
							  ],
							  ['Rental Seekers','user_view_request_rental.php',null,
							     ['Post Seeker Request','user_rental_request.php'],
								 //['Advance Search','under_construction.php'],
								 ['View Rental Request','user_view_request_rental.php'],
							   ],
							  ['Property Search','index.php',null,
							     ['Quick Search','index.php'],
								 //['Advance Search','under_construction.php'],
								 ['Saved Searches','user_favorates_details.php'],
							   ],
							  ['Manage My Posting','user_display_property.php',null],
							  ['My Account',' ',null,
							     ['My profile','my_profile.php'],
							     ['Edit Profile','my_profile_edit.php'],
								 ['Change Password','change_pwd.php'],
								  //['Payment Details','under_construction.php'],
								  //['Payment Reports','under_construction.php'],  
							   ],
							  //['Logout','logout.php',null],
							 ];

var ADMIN_USER_MENU_ITEMS = [
							  ['Home','index.php',null],
							  // ['Quick_search_creation','admin_search_link.php',null],
							   
							  ['Post Your Property','user_post_property.php',null,
							  	['Residential','user_post_property.php?parent_id=1&mother_property_id=1'],
							    ['Commercial','user_post_property.php?parent_id=2&mother_property_id=2'],
							    ['Roommates','user_post_property.php?parent_id=3&mother_property_id=3'],
							  ],
							  ['Rental Seekers','user_view_request_rental.php',null,
							     ['Post Seeker Request','user_rental_request.php'],
								 //['Advance Search','under_construction.php'],
								 ['View Rental Request','user_view_request_rental.php'],
							   ],
							  ['Manage My Posting','user_display_property.php',null],
							  ['Catagory Details','admin_category_details.php',null,
							     ['View Catagories','admin_category_details.php'],
								 ['Add Catagories','admin_manage_category_details.php'],
							   ],
							   ['Feature Details','admin_master_feature_details.php',null,
							     ['View Features','admin_master_feature_details.php'],
								 ['Add Features','admin_manage_master_feature_details.php'],
							   ],
							   ['My Account',' ',null,
								 ['My profile','my_profile.php'],
							     ['Edit Profile','my_profile_edit.php'],
								 ['Change Password','change_pwd.php'],
								 //['Quick_search_creation','admin_search_link.php'],
							   ],
							   
							   
							 ];

