// show hide
$(function() {
	$("a.trigger").click(
		function(){
			if( $(this).parent().find("img").attr("src").indexOf("right") != -1){
				$(this).parent().find("img").attr("src",'/images/icons/arrow-down.gif');
			}else{
				$(this).parent().find("img").attr("src",'/images/icons/arrow-right.gif');
			}

			$(this).parent().parent().find("div").toggle("fast");
			return false;
		}
	);

});

//popup
$(function(){
	$('a.popup').click(function(){
		attributes = 'width=1100,height=800,scrollbars=yes,resizable=yes'
		window.open(this.href,'PCGI',attributes);
		return false;
	});
});

// Rate Calc
$(function(){
	$('input#need-to-make-radio').click(function(){
		$('input#need-to-make-txt').disabled = "false";
		$('input#need-to-make-txt').focus();
		$('input#billing-at-txt').disabled = "true";		
	});
	
	$('input#billing-at-radio').click(function(){
		$('input#billing-at-txt').disabled = "false";		
		$('input#billing-at-txt').focus();
		$('input#need-to-make-txt').disabled = "true";		
	});
});


