$(document).ready(function(){
	//$('.colorbox').colorbox({ 'close':'' });

	$('.lnk_hoa_simulator').bind('click',function(evt){
		evt.preventDefault();
		google_analytics_track_conversion('Modal Launches','HOA Simulator','HOA Simulator');
		$.colorbox({
			'href':'interstitial-hoa-simulator.php',
			'width':'580px',
			'height':'300px',
			'iframe':true,
			'close':'',
			'scrolling':false
		});
	});

	$('.client_exp_enlarge a').bind('click',function(evt){
		evt.preventDefault();
		$.colorbox({'href':$(this).attr('href'),'close':''});
	});

	$('a.colorbox').bind('click',function(evt){
		evt.preventDefault();
		$.colorbox({'href':$(this).attr('href'),'close':''});
	});

});

function google_analytics_track_conversion(category,action,label){
	_gaq.push(['_trackEvent',category,action,label]);
}
