/* Client-side access to querystring name=value pairs
	Version 1.2.4
	30 March 2008
	Adam Vandenberg
*/
function Querystring(qs) { // optionally pass a querystring to parse
	this.params = {};
	this.get=Querystring_get;
	
	if (qs == null);
		qs=location.search.substring(1,location.search.length);

	if (qs.length == 0) 
		return;

// Turn <plus> back to <space>
// See: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1
	qs = qs.replace(/\+/g, ' ');
	var args = qs.split('&'); // parse out name/value pairs separated via &
	
// split out each name=value pair
	for (var i=0;i<args.length;i++) {
		var pair = args[i].split('=');
		var name = unescape(pair[0]);
		
		var value = (pair.length==2)
			? unescape(pair[1])
			: name;
		
		this.params[name] = value;
	}
}

function Querystring_get(key, default_) {
	var value=this.params[key];
	return (value!=null) ? value : default_;
}

function readCookie(name, defVal) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length).replace(/\+/g, ' ');
	}
	return defVal;
}

//get current location from query string or cookie for locatino specific menu
var oQs = new Querystring();
var sFeatLoc = oQs.get("loc","");
if(sFeatLoc.length == 0)
	sFeatLoc = readCookie("jbloc","");

var sFeatLocName=sFeatLoc;
switch(sFeatLoc)
{
	case 'NewRiverValley' : sFeatLocName='New River Valley Jobs'; break;
	case 'SmithMountainLake' : sFeatLocName='Smith Mountain Lake Jobs'; break;
	case 'Roanoke' : sFeatLocName='Roanoke Jobs&nbsp;&nbsp;&nbsp;&nbsp;Salem Jobs'; break;
	default : sFeatLocName += ' Jobs'; break;
}
	
function cdd_menu656929(){//////////////////////////Start Menu Data/////////////////////////////////

//**** NavStudio, (c) 2004, OpenCube Inc.,  -  www.opencube.com ****
//Note: This data file may be manually customized outside of the visual interface.

    //Unique Menu Id
	this.uid = 656929


/**********************************************************************************************

                               Icon Images

**********************************************************************************************/






/**********************************************************************************************

                              Global - Menu Container Settings

**********************************************************************************************/


	this.menu_background_color = "#C6670B"
	this.menu_border_color = "#000000"
	this.menu_border_width = "0"
	this.menu_padding = "0,0,0,0"
	this.menu_border_style = "solid"
	this.divider_caps = false
	this.divider_width = 1
	this.divider_height = 1
	this.divider_background_color = "#000000"
	this.divider_border_style = "none"
	this.divider_border_width = 0
	this.divider_border_color = "#000000"
	this.menu_is_horizontal = false
	this.menu_width = 900
	this.menu_xy = "-80,7"
	this.menu_background_image = ""
	this.menu_animation = "progid:DXImageTransform.Microsoft.Inset(duration=.3)"




/**********************************************************************************************

                              Global - Menu Item Settings

**********************************************************************************************/


	this.menu_items_background_color_roll = "#000000"
	this.menu_items_text_color = "#FFFFFF"
	this.menu_items_text_decoration = "none"
	this.menu_items_font_family = "Arial"
	this.menu_items_font_size = "11px"
	this.menu_items_font_style = "normal"
	this.menu_items_font_weight = "bold"
	this.menu_items_text_align = "left"
	this.menu_items_padding = "4,5,4,5"
	this.menu_items_border_style = "solid"
	this.menu_items_border_width = 0
	//this.menu_items_width = 90
	this.menu_items_text_color_roll = "#FFFFFF"
	this.menu_items_background_image = ""




/**********************************************************************************************

                              Main Menu Settings

**********************************************************************************************/


        this.menu_background_color_main = "#C6670B"
        this.menu_items_background_color_main = "#000000"
        this.menu_items_background_color_roll_main = "#000000"
        this.menu_items_text_color_main = "#FFFFFF"
        this.menu_items_text_color_roll_main = "#FFFFFF"
        this.menu_border_color_main = "#000000"
        this.menu_border_width_main = "0"
        this.menu_items_border_color_main = "#000000"
        this.menu_items_border_color_roll_main = "#000000"
        this.menu_padding_main = "0,0,0,0"
        this.menu_items_text_align_main = "center"
        this.menu_is_horizontal_main = true
        this.divider_background_color_main = "#000000"

        this.item0 = "Home"
        this.item1 = "Why"
        this.item2 = "Featured Jobs";
        this.item3 = "Career Tools"
        this.item4 = "Community"
        this.item5 = "Employers"
        this.item6 = "Blog"
        this.item7 = "Contact"
        
        
        this.item_background_color0 = "#c6670b"
        this.item_text_color0 = "#ffffff"
        this.item_background_color1 = "#c6670b"
        this.item_background_image1 = ""
        this.item_background_color2 = "#c6670b"
        this.item_background_color3 = "#c6670b"
        this.item_background_color_roll3 = "#000000"
        this.item_background_color4 = "#c6670b"
        this.item_background_color5 = "#c6670b"
        this.item_text_color5 = "#ffffff"
        this.item_background_color6 = "#c6670b"
        this.item_background_color7 = "#c6670b"
        this.item_background_color8 = "#c6670b"
        
        this.url0 = "../default.asp"
        this.url1 = "../why_us.asp"
        this.url2 = "../featured_jobs.asp?loc="+sFeatLoc
        this.url6 = "http://blog.jobzcafe.com"
        this.url7 = "../contact.asp"
        
        
        this.item_width0 = 69
        this.item_width1 = 77
        this.item_width2 = 115
        this.item_width3 = 107
        this.item_width4 = 99
        this.item_width5 = 93
        this.item_width6 = 62
        this.item_width7 = 99
        
		if(sFeatLoc.length > 0)
		{
			this.item_width0 = 60;        
			this.item_width1 = 60;
			this.item_width2 = 90;
			this.item_width3 = 90;
			this.item_width4 = 90;
			this.item_width5 = 90;
			this.item_width6 = 50;
			this.item_width7 = 50;

		
			this.item8 = sFeatLocName
			this.url8 = "../featured_jobs.asp?loc="+sFeatLoc
       
			this.item_text_color8 = "#99cc00;"
        	this.item_text_align8 = "right"
        
			this.item_font_size8="12px";
			this.item_width8 = 250;
		}

/**********************************************************************************************

                              Sub Menu Settings

**********************************************************************************************/


    //Sub Menu 0




    //Sub Menu 1




    //Sub Menu 2




    //Sub Menu 3

        this.menu_width3 = 155
        this.divider_background_color3 = "#000000"

        this.item3_0 = "career advice"
        this.item3_1 = "career fairs"
        this.item3_2 = "salary search"
        this.item3_3 = "job trends"
        this.item3_4 = "employment services"

        this.url3_0 = "../seeker_careeradvice.asp"
        this.url3_1 = "../seeker_careerfairs.asp"
        this.url3_2 = "http://www.indeed.com/salary"
        this.url_target3_2 = "_blank"
        this.url3_3 = "http://www.indeed.com/jobtrends"
        this.url_target3_3 = "_blank"
        this.url3_4 = "../seeker_careeradvice_empservices.asp"



    //Sub Menu 4

        this.menu_width4 = 158

        this.item4_0 = "local events"
        this.item4_1 = "volunteer opportunities"
        this.item4_2 = "relocation tools"
        this.item4_3 = "young professionals"

        this.url4_0 = "http://myscoper.com/"
        this.url_target4_0 = "_blank"
        this.url4_1 = "http://www.councilofcommunityservices.org/vrv/index.html"
        this.url_target4_1 = "_blank"
        this.url4_2 = "../relocation.asp"
        this.url4_3 = "../young_prof.asp"


    //Sub Menu 5

        this.menu_width5 = 157

        this.item5_0 = "recruitment challenge"
        this.item5_1 = "solution"
        this.item5_2 = "why"
        this.item5_3 = "presentation"
        this.item5_4 = "join jobzcafe"
        this.item5_5 = "managed services"

        this.url5_0 = "../recruitment_challenge.asp"
        this.url5_1 = "../solution_recruitment.asp"
        this.url5_2 = "../why_us.asp"
        this.url5_3 = "../ppt/jobzcafe_emp1.html"
        this.url5_4 = "../employer_join.asp"
        this.url5_5 = "../managed_services.asp"



    //Sub Menu 6




    //Sub Menu 7




}///////////////////////// END Menu Data /////////////////////////////////////////



//Document Level Settings

cdd__activate_onclick = false
cdd__showhide_delay = 100
cdd__url_target = "_self"
cdd__url_features = "resizable=1, scrollbars=1, titlebar=1, menubar=1, toolbar=1, location=1, status=1, directories=1, channelmode=0, fullscreen=0"
cdd__display_urls_in_status_bar = false
cdd__default_cursor = "hand"
cdd__go = true


//NavStudio Code (Warning: Do Not Alter!)

if (window.showHelp){b_type = "ie"; if (!window.attachEvent) b_type += "mac";}if (document.createElementNS) b_type = "dom";if (navigator.userAgent.indexOf("afari")>-1) b_type = "safari";if (window.opera) b_type = "opera"; qmap1 = "\<\script language=\"JavaScript\" vqptag='loader_sub' src=\""; qmap2 = ".js\">\<\/script\>";;function iesf(){};;function vqp_error(val){alert(val)}
if (b_type){document.write(qmap1+cdd__codebase+"pbrowser_"+b_type+qmap2);document.close();}