$(document).ready(function(){
	
	$("#header .login").prepend('<p class="buttons-switch"><a href="#" class="cust on">contract customers</a><a href="#" class="eng">engineers</a></p>');
		
	$("#header .buttons-switch a.cust").click(function(){
			$("#header .jscript-switch1").slideDown("slow");
			$("#header .jscript-switch2").slideUp("slow");
			$("#header .buttons-switch a.cust").addClass("on");
			$("#header .buttons-switch a.eng").removeClass("on");
		}
	);
	$("#header .buttons-switch a.eng").click(function(){
			$("#header .jscript-switch1").slideUp("slow");
			$("#header .jscript-switch2").slideDown("slow");
			$("#header .buttons-switch a.cust").removeClass("on");
			$("#header .buttons-switch a.eng").addClass("on");
		}
	);
});