/*
 * $Revision: 176 $
 * $Author: Mike $
 */
 
jQuery(function($) {
 
	var PostAnAd = {
		forms : {
			switchit : function(){
				var $text = $('#paa div.text-only')
				var $tile = $('#paa div.tile-only')

				if($('#f-tile').is(':checked')){
					$text.hide();
					$tile.show();
				}
				var event = 'change';
				if($.browser.msie) event = 'click';
				$('#f-tile, #f-text').bind(event, function(){
					$text.hide();
					$tile.hide();
					if($(this).is('#f-text')){
						$text.show();
						getFullPricing();
					} else {
						$tile.show();
						getFullPricing();
					}
				});
			}
		}
	};
	
	// navigation
	PostAnAd.forms.switchit();
	
});