function cdd_menu0(){//////////////////////////Start Menu Data/////////////////////////////////
/**********************************************************************************************

	Menu 0 - General Settings and Menu Structure

	**See the menu_styles.css file for additional customization options**

***********************************************************************************************/



/*---------------------------------------------
Icon Images
---------------------------------------------*/

//Define two types of unlimited icon images below, associate any image
//with any item using both the 'icon_rel' and 'icon_abs' parameter in the
//sub menu structure section (set to the index number of the icon image)


    //Relative positioned icon images (flow with main menu or sub item text)

	this.rel_icon_image0 = "sample_images/sample_gray_bullet.gif"
	this.rel_icon_rollover0 = "sample_images/sample_gray_bullet.gif"
	this.rel_icon_image_wh0 = "12,8"

//	this.rel_icon_image1 = "sample_images/blue_down_arrow.gif"
//	this.rel_icon_rollover1 = "sample_images/blue_down_arrow.gif"
        this.rel_icon_image1 = ""
        this.rel_icon_rollover1 = ""
	this.rel_icon_image_wh1 = "13,8"
	


    //Absolute positioned icon images (coordinate positioned - relative to 
    //right top corner of the menu item displaying the icon.)

	this.abs_icon_image0 = "sample_images/blue_down_arrow.gif"
	this.abs_icon_rollover0 = "sample_images/blue_down_arrow.gif"
	this.abs_icon_image_wh0 = "8,10"
	this.abs_icon_image_xy0 = "-9,5"



/*---------------------------------------------
Pointers & Dividers
---------------------------------------------*/


//Pointers are optional, specific settings override the default pointer.
//The x and y offset of each pointer image is relative to the upper left
//corner of the menu group using the pointer.



    //Pointer Settings
	
	this.pointer_image = "sample_images/sample_red_arrow1.gif"
	this.pointer_image_wh = "8,10"			//width and height of pointer image
	this.pointer_image_xy = "-9,0"			//x and y offset of pointer image

	this.pointer_image_main = "sample_images/blue_arrow.gif"
	this.pointer_image_wh_main = "8,10"
	this.pointer_image_xy_main = "-9,0"


    //Divider Settings

	this.use_divider_caps = false		//cap the top and bottom of each menu group
	this.divider_width = 5			//applies to horizontal menus only
	this.divider_height = 2			//applies to vertical menus only

	

    //available specific settings

	this.use_divider_capsX_X = true
	this.divider_widthX = 20
	this.divider_heightX = 20	

	this.pointer_imageX = "../sample_images/arrow.gif"
	this.pointer_image_whX = "13,10"
	this.pointer_image_xyX = "10,10"



/*---------------------------------------------
Menu Orientation and Dimensions
---------------------------------------------*/

   //All values below are defined in pixel units.  Only the 
   //width of items and menu groups may be defined, heights 
   //are automatically determined by the font size and padding
   //values below.  See the menu_styles.css file for additional
   //border color and style settings.


	this.is_horizontal = false			//applies to all menu groups
	this.is_horizontal_main = false			//applies to main group only
	
	this.menu_width = 100				//applies to vertical menus
	this.menu_width_items = 111			//applies to items in a horizontal menu



   //Padding Values
  
	
	this.menu_padding_main = "4,0,4,0"		//top, right, bottom, left
	this.menu_padding_sub = "9,6,5,6"

	this.item_padding_main = "2,5,2,5"
	this.item_padding_sub = "3,5,3,0"
	
		

   //Border Sizing


	this.menu_border_main = 1
	this.menu_border_sub = 1

	this.item_border_main = 0
	this.item_border_sub = 0



   //Specific Item Setting Examples (change 'X' to appropriate index value)
	

	this.is_horizontalX = true
	
	this.menu_widthX = 200
	this.menu_width_itemsX = 100
	this.menu_width_itemX_X = 100

	this.menu_padding_subX = "10,5,10,5"
	this.item_padding_mainX = "10,5,10,5"
	this.item_padding_subX_X = "10,5,10,5"

	this.menu_border_subX = 1
	this.item_border_mainX = 1
	this.item_border_subX_X = 1



/*---------------------------------------------
Optional Style Sheet Class Name Association
---------------------------------------------*/

//Use the following section to optionally associate menu groups 
//and menu items with existing CSS classes from your site.



   //global class names

	//this.main_menu_class = "myclassname"
	//this.main_items_class = "myclassname"
	//this.main_items_rollover_class = "myclassname"

	//this.sub_menu_class = "myclassname"
	//this.sub_items_class = "myclassname"
	//this.sub_items_rollover_class = "myclassname"


   //specific menu items

	//this.item_classX_X = "myclassname"
	//this.item_rollover_classX_X = "myclassname"



/*---------------------------------------------
Exposed Menu Events - Custom Script Attachment
---------------------------------------------*/


	this.show_menu = ""
	this.hide_menu = ""
	

 //available specific settings


	this.show_menuX = "alert('show id')"
	this.hide_menuX = "alert('hide id')"
	

	//use the following to execute a JavaScript statement for any menu item
	//change 'X' below, to the menu items index number.
	
	this.clickX = "alert('Sample Click Code - Exposed Menu Event')"
	


/*------------------------------------------------
Browser Workarounds
-------------------------------------------------*/


   //Opera 5 & 6 - alternate HTML display (Opera 7 displays menu 100%)

	this.opera_old_display_html = "Please update your opera browser.";



/*---------------------------------------------
Main Menu Group and Items
---------------------------------------------*/


   //Main Menu Group 0

	
	this.item0 = "home"
	this.icon_rel0 = 1
	this.url0 = "http://www.tiplabs.com"

	this.item1 = "about"
	this.icon_rel1 = 1
	this.url1 = "http://www.tiplabs.com/modules.php?name=About"
	
	this.item2 = "submit tip"
	this.icon_rel2 = 1
	this.url2 = "http://www.tiplabs.com/modules.php?name=Feedback"

        this.item3 = "forums"
        this.icon_rel3 = 1
        this.url3 = "http://www.tiplabs.com/modules.php?name=Forums"

        this.item4 = "net traffic"
        this.icon_rel4 = 1
        this.url4 = "http://www.tiplabs.com/modules.php?name=Internet_Traffic_Report"
	
/*---------------------------------------------
Sub Menu Group and Items
---------------------------------------------*/
}///////////////////////// END Menu Data /////////////////////////////////////////


function cdd_menu1(){//////////////////////////Start Menu Data/////////////////////////////////
/**********************************************************************************************

        Menu 1 - General Settings and Menu Structure

        **See the menu_styles.css file for additional customization options**

***********************************************************************************************/



/*---------------------------------------------
Icon Images
---------------------------------------------*/

//Define two types of unlimited icon images below, associate any image
//with any item using both the 'icon_rel' and 'icon_abs' parameter in the
//sub menu structure section (set to the index number of the icon image)


    //Relative positioned icon images (flow with main menu or sub item text)

        this.rel_icon_image0 = "sample_images/sample_gray_bullet.gif"
        this.rel_icon_rollover0 = "sample_images/sample_gray_bullet.gif"
        this.rel_icon_image_wh0 = "12,8"

        this.rel_icon_image1 = "sample_images/sample_red_arrow.gif"
        this.rel_icon_rollover1 = "sample_images/sample_red_arrow.gif"
        this.rel_icon_image_wh1 = "13,8"



    //Absolute positioned icon images (coordinate positioned - relative to 
    //right top corner of the menu item displaying the icon.)

        this.abs_icon_image0 = "sample_images/sample_red_arrow1.gif"
        this.abs_icon_rollover0 = "sample_images/sample_red_arrow1.gif"
        this.abs_icon_image_wh0 = "8,10"
        this.abs_icon_image_xy0 = "-9,5"



/*---------------------------------------------
Pointers & Dividers
---------------------------------------------*/


//Pointers are optional, specific settings override the default pointer.
//The x and y offset of each pointer image is relative to the upper left
//corner of the menu group using the pointer.



    //Pointer Settings

        this.pointer_image = "sample_images/sample_red_arrow1.gif"
        this.pointer_image_wh = "8,10"                  //width and height of pointer image
        this.pointer_image_xy = "-9,0"                  //x and y offset of pointer image

        this.pointer_image_main = "sample_images/sample_red_arrow1.gif"
        this.pointer_image_wh_main = "8,10"
        this.pointer_image_xy_main = "-9,0"


    // This the side pointer whether it is on the left or right side

        this.pointer_image1_2 = "sample_images/sample_red_arrow2.gif"
        this.pointer_image_wh1_2 = "8,10"
        this.pointer_image_xy1_2 = "122,0"

        this.pointer_image1_3 = "sample_images/sample_red_arrow2.gif"
        this.pointer_image_wh1_3 = "8,10"
        this.pointer_image_xy1_3 = "102,0"

//        this.pointer_image0_0 = "sample_images/sample_red_arrow2.gif"
//        this.pointer_image_wh0_0 = "8,10"
//        this.pointer_image_xy0_0 = "102,0"



    //Divider Settings

        this.use_divider_caps = false           //cap the top and bottom of each menu group
        this.divider_width = 5                  //applies to horizontal menus only
        this.divider_height = 2                 //applies to vertical menus only



    //available specific settings

        this.use_divider_capsX_X = true
        this.divider_widthX = 20
        this.divider_heightX = 20

        this.pointer_imageX = "../sample_images/arrow.gif"
        this.pointer_image_whX = "13,10"
        this.pointer_image_xyX = "10,10"



/*---------------------------------------------
Menu Orientation and Dimensions
---------------------------------------------*/

   //All values below are defined in pixel units.  Only the 
   //width of items and menu groups may be defined, heights 
   //are automatically determined by the font size and padding
   //values below.  See the menu_styles.css file for additional
   //border color and style settings.


        this.is_horizontal = false                      //applies to all menu groups
        this.is_horizontal_main = false                 //applies to main group only

        this.menu_width = 100                            //applies to vertical menus
        this.menu_width_items = 111                     //applies to items in a horizontal menu



   //Padding Values
  

        this.menu_padding_main = "4,0,4,0"              //top, right, bottom, left
        this.menu_padding_sub = "9,6,5,6"

        this.item_padding_main = "2,5,2,5"
        this.item_padding_sub = "3,5,3,0"



   //Border Sizing


        this.menu_border_main = 1
        this.menu_border_sub = 1

        this.item_border_main = 0
        this.item_border_sub = 0



   //Specific Item Setting Examples (change 'X' to appropriate index value)


        this.is_horizontalX = true

        this.menu_widthX = 200
        this.menu_width_itemsX = 100
        this.menu_width_itemX_X = 100

        this.menu_padding_subX = "10,5,10,5"
        this.item_padding_mainX = "10,5,10,5"
        this.item_padding_subX_X = "10,5,10,5"

        this.menu_border_subX = 1
        this.item_border_mainX = 1
        this.item_border_subX_X = 1



/*---------------------------------------------
Optional Style Sheet Class Name Association
---------------------------------------------*/

//Use the following section to optionally associate menu groups 
//and menu items with existing CSS classes from your site.



   //global class names

        //this.main_menu_class = "myclassname"
        //this.main_items_class = "myclassname"
        //this.main_items_rollover_class = "myclassname"

        //this.sub_menu_class = "myclassname"
        //this.sub_items_class = "myclassname"
        //this.sub_items_rollover_class = "myclassname"


   //specific menu items

        //this.item_classX_X = "myclassname"
        //this.item_rollover_classX_X = "myclassname"



/*---------------------------------------------
Exposed Menu Events - Custom Script Attachment
---------------------------------------------*/


        this.show_menu = ""
        this.hide_menu = ""


 //available specific settings


        this.show_menuX = "alert('show id')"
        this.hide_menuX = "alert('hide id')"


        //use the following to execute a JavaScript statement for any menu item
        //change 'X' below, to the menu items index number.

        this.clickX = "alert('Sample Click Code - Exposed Menu Event')"



/*------------------------------------------------
Browser Workarounds
-------------------------------------------------*/


   //Opera 5 & 6 - alternate HTML display (Opera 7 displays menu 100%)

        this.opera_old_display_html = "Please update your opera browser.";



/*---------------------------------------------
Main Menu Group and Items
---------------------------------------------*/


   //Main Menu Group 0

        this.item0 = "software"
        this.icon_rel0 = 1
        //this.url0 = "myurl.html"

        this.item1 = "hardware"
        this.icon_rel1 = 1
        //this.url1 = "myurl.html"

	this.item2 = "internet"
	this.icon_rel2 = 1
	//this.url2 = "mrurl.html"

        this.item3 = "household"
        this.icon_rel3 = 1
        //this.url3 = "myurl.html"

        this.item4 = "automotive"
        this.icon_rel4 = 1
        this.url4 = "http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=12"

        this.item5 = "entertainment"
        this.icon_rel5 = 1
        this.url5 = "http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=13"

	this.item6 = "technology"
	this.icon_rel6 = 1
	//this.url6 = "myurl.html"

	this.item7 = "investing"
	this.icon_rel7 = 1
	this.url7 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=39'

/*---------------------------------------------
Sub Menu Group and Items
---------------------------------------------*/



   // Software Sub Menu 

        this.menu_xy0 = "-10,19"
        this.menu_width0 = 90

        this.item0_0 = "pc"
        this.item0_1 = "embedded"
	this.item0_2 = "server"

        this.icon_rel0_0 = 0
        this.icon_rel0_1 = 0
	this.icon_rel0_2 = 0

        // This will put the arrows to the right (directory)
        this.icon_abs0_0 = 0
	this.icon_abs0_1 = 0

        this.url0_0 = 'documents/sample_link.htm'
        this.url0_1 = 'documents/sample_link.htm'
	this.url0_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=28'

   // Software/PC Sub Menu

        this.menu_xy0_0 = "2,-1"
        this.menu_width0_0 = 90

        this.item0_0_0 = "linux"
	this.item0_0_1 = "windows"
	this.item0_0_2 = "osx"

        this.icon_rel0_0_0 = 0
        this.icon_rel0_0_1 = 0
	this.icon_rel0_0_2 = 0

	// This will put the arrows to the right (directory)
        this.icon_abs0_0_1 = 0
        

   // Software/PC/Linux Sub Menu
	this.url0_0_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=3'
	this.url0_0_1 = 'documents/sample_link.htm'
	

   // Software/PC/Windows Sub Menu

        this.menu_xy0_0_1 = "-10,19"
        this.menu_width0_0_1 = 100

	this.item0_0_1_0 = "cd/dvd tools"
        this.item0_0_1_1 = "desktop tools"
	this.item0_0_1_2 = "encryption"
	this.item0_0_1_3 = "gaming"
	this.item0_0_1_4 = "mame"
	this.item0_0_1_5 = "mp3"
        this.item0_0_1_6 = "os emulators"
	this.item0_0_1_7 = "os tweaks"
	this.item0_0_1_8 = "p2p"
	this.item0_0_1_9 = "sniffers"
	this.item0_0_1_10 = "spam clients"
	this.item0_0_1_11 = "anti-spyware"
        this.item0_0_1_12 = "subscriptions"
	this.item0_0_1_13 = "video"
	this.item0_0_1_14 = "wifi"

        this.icon_rel0_0_1_0 = 0
        this.icon_rel0_0_1_1 = 0
        this.icon_rel0_0_1_2 = 0
        this.icon_rel0_0_1_3 = 0
        this.icon_rel0_0_1_4 = 0
	this.icon_rel0_0_1_5 = 0
	this.icon_rel0_0_1_6 = 0
	this.icon_rel0_0_1_7 = 0
	this.icon_rel0_0_1_8 = 0
	this.icon_rel0_0_1_9 = 0
	this.icon_rel0_0_1_10 = 0
	this.icon_rel0_0_1_11 = 0
	this.icon_rel0_0_1_12 = 0
	this.icon_rel0_0_1_13 = 0
	this.icon_rel0_0_1_14 = 0

	// cd/dvd tools
	this.url0_0_1_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=21'

        // desktop tools
        this.url0_0_1_1 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=5'

	// encryption
	this.url0_0_1_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=23'

        // gaming
        this.url0_0_1_3 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=15'
	
	// mame
        this.url0_0_1_4 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=22'

	// mp3
	this.url0_0_1_5 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=27'
	
	// os emulators
        this.url0_0_1_6 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=7'

	// os tweaks
	this.url0_0_1_7 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=38'


	// p2p
	this.url0_0_1_8 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=19'

	// sniffers
	this.url0_0_1_9 = ''

	// spam clients
        this.url0_0_1_10 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=6'

	// anti-spyware
	this.url0_0_1_11 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=47'

	// subscriptions
        this.url0_0_1_12 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=11'

	// video
	this.url0_0_1_13 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=33'

	// wifi
	this.url0_0_1_14 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=24'


   // Software/PC/OSX Sub Menu
        this.url0_0_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=40'

   // Software/Embedded Sub Menu

        this.menu_xy0_1 = "2,-1"
        this.menu_width0_1 = 90

        this.item0_1_0 = "cell phones"
	this.item0_1_1 = "consoles"
        this.item0_1_2 = "dvr"
        this.item0_1_3 = "networking"
	this.item0_1_4 = "pda"
 
        this.icon_rel0_1_0 = 0
        this.icon_rel0_1_1 = 0
	this.icon_rel0_1_2 = 0
	this.icon_rel0_1_3 = 0
        this.icon_rel0_1_4 = 0
 
        this.url0_1_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=2'
	this.url0_1_1 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=18'
        this.url0_1_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=14'
	this.url0_1_3 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=16'
	this.url0_1_4 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=46'


   // Hardware Sub Menu 

        this.menu_xy1 = "-10,19"
        this.menu_width1 = 100
        
        this.item1_0 = "pc"
        this.item1_1 = "embedded"
        
	this.icon_rel1_0 = 0
        this.icon_rel1_1 = 0
        this.icon_abs1_0 = 0
        this.icon_abs1_1 = 0

        this.url1_0 = 'documents/sample_link.htm'
        this.url1_1 = 'documents/sample_link.htm'

   // Hardware/PC Sub Menu 

        this.menu_xy1_0 = "2,-1"
        this.menu_width1_0 = 100

        this.item1_0_0 = "video cards"
        this.item1_0_1 = "motherboards"
        this.item1_0_2 = "case mods"
	this.item1_0_3 = "cd media"
	this.item1_0_4 = "ethernet"

        this.icon_rel1_0_0 = 0
        this.icon_rel1_0_1 = 0
        this.icon_rel1_0_2 = 0
	this.icon_rel1_0_3 = 0
	this.icon_rel1_0_4 = 0

        this.url1_0_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=4'
        this.url1_0_1 = 'documents/sample_link.htm'
        this.url1_0_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=1'
	this.url1_0_3 = ''
	
	this.url1_0_4 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=37'

   // Hardware/Embedded Sub Menu

        this.menu_xy1_1 = "2,-1"
        this.menu_width1_1 = 100

	this.item1_1_0 = "camcorder"
        this.item1_1_1 = "cell phones"
        this.item1_1_2 = "pda"
        this.item1_1_3 = "consoles"
	this.item1_1_4 = "networking"
	this.item1_1_5 = "video"

        this.icon_rel1_1_0 = 0
        this.icon_rel1_1_1 = 0
        this.icon_rel1_1_2 = 0
	this.icon_rel1_1_3 = 0
	this.icon_rel1_1_4 = 0
	this.icon_rel1_1_5 = 0

	this.url1_1_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=41'
        this.url1_1_1 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=9'
        this.url1_1_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=35'
        this.url1_1_3 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=10'
	this.url1_1_4 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=17'
	this.url1_1_5 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=45'


    // Internet Sub Menu

        this.menu_xy2 = "-10,19"
        this.menu_width2 = 100

	this.item2_0 = "email"
        this.item2_1 = "utility"
	this.item2_2 = "security"
	this.item2_3 = "tutorial"
	this.item2_4 = "video"
	this.item2_5 = "voip"
	this.item2_6 = "wifi"

        this.icon_rel2_0 = 0
	this.icon_rel2_1 = 0
	this.icon_rel2_2 = 0
	this.icon_rel2_3 = 0
	this.icon_rel2_4 = 0
	this.icon_rel2_5 = 0
	this.icon_rel2_6 = 0

	// email
	this.url2_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=32'

        // utility
        this.url2_1 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=29'
	
	// security
	this.url2_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=31'

	// tutorial
	this.url2_3 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=36'

	// video
	this.url2_4 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=44'

	// voip
	this.url2_5 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=43'
	
	// wifi
	this.url2_6 = ''


    // Household Sub Menu 

        this.menu_xy3 = "-10,19"
        this.menu_width3 = 100

        this.item3_0 = "clothing"
	this.item3_1 = "credit"
        this.item3_2 = "gaming"
	this.item3_3 = "termites"
	
        this.icon_rel3_0 = 0
        this.icon_rel3_1 = 0
	this.icon_rel3_2 = 0
	this.icon_rel3_3 = 0

	// clothing
        this.url3_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=8'
	
	// credit
	this.url3_1 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=25'

	// gaming
	this.url3_2 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=20'

	// termites
        this.url3_3 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=26'

    // Technology

        this.menu_xy6 = "-10,19"
        this.menu_width6 = 100

        this.item6_0 = "media"

        this.icon_rel6_0 = 0

	// media
	this.url6_0 = 'http://www.tiplabs.com/modules.php?name=News&file=categories&op=newindex&catid=30'


}///////////////////////// END Menu Data /////////////////////////////////////////
