// JavaScript Document
function cdropDownBox(pageOn){
	var testx = pageOn
	var positionsAR = {"convert_nav_button1" : "0px",
					  "convert_nav_button2" : "-42px",
					  "convert_nav_button3" : "-113px",
					  "convert_nav_button4" : "-169px",
					  "convert_nav_button5" : "-256px",
					  "convert_nav_button6" : "-311px"};
	if (testx)
			{
				$('.convert_nav li').each(function(index){
							  if ($(this).hasClass(testx))
									 {
										 var positionVars = positionsAR[testx] + " -22px";
										 $('.convert_nav li.' + testx).css("background-position", positionVars);
										 return false;
									 }
												  });
			}
}
