$(document).ready(function() {
	$(".hover").hover(
		function(){
			this.src=this.src.replace("-off","-on");
		},
		function(){
			this.src=this.src.replace("-on","-off");
		}
	);
	$("#select").click(function(){ 
		$(".options").slideToggle("fast"); 
    });
});
function cp_form(){
	$.post("../inc/process-form.asp", $("#cp_form").serialize(),
		function(data){
			var next=data.split(':::');
			if (next[0]=='error') alert(next[1]);
			else $("#cp_form").html(data);
		}
	);
};
function interests(a){
	$('#interest').val(a);
	$('#select').html(a);
	$(".options").slideToggle("fast");
};
