
var vWidth, vX, vY;
var qsParm = new Array();

if (window.innerWidth) {
vWidth=window.innerWidth;
}
else if (document.documentElement && document.documentElement.clientWidth) {
vWidth=document.documentElement.clientWidth;
}
else if (document.body) {
vWidth=document.body.clientWidth;
}
vX =  (vWidth-1000)/2;
vY =  7;

$.fx.speeds._default = 1000;


function showwebsitepackage() {

var sVal = $("#websitepackage").val();

$("#A1").hide();
$("#A2").hide();
$("#A3").hide();
$("#A4").hide();

$("#A" +sVal).show();
		
		
}


