jQuery(document).ready(function() {
	

	/*
	 * Special behavior: rollover for the links in the 'I Want To' section change the background graphic (not just color change, etc).
	 */
	jQuery('.iwantto_button').hover(
		function() { // onmouseover
			jQuery(this).addClass('iwantto_button_rollover');
		},
		function() { // onmouseout
			jQuery(this).removeClass('iwantto_button_rollover');
		}
	);
	
});

