// JavaScript Document

$(document).ready(function() {
	
//start tc click
	$('.offer_tc_link').click(function() {
		$(this).hide(0);							   
		$(this).parent().find('.offer_tc').show(0);	
		return false;
	});
//end tc click

//start avail click
// start link buttom						   
	$('.offer_avail').click(function(){
		var my_loc= $(this).find('a').attr('href');								
		__utmLinker(my_loc);
	});
// end link button

//end avail click

});