$(document).ready(function() {
	
	$('#print-terms').live('click', function() {
		window.open(baseUrl + 'print-terms.phtml', 'terms', 'width=300, height=300, top=100, left=100, toolbar=0, menubar=0, location=1, status=1, scrollbars=1, resizable=1');
	});
	
	$('#save-terms').live('click', function() {
		window.open(baseUrl + 'save-terms.pdf', 'terms', 'width=300, height=300, top=100, left=100, toolbar=0, menubar=0, location=1, status=1, scrollbars=1, resizable=1');
	});
	
	$('#term-condition').live('click', function(){
		$('#term').toggle(400);
		return false;
	});
});
