//preload images
if (document.image)
{
	btn_hover = new Image(226,33);
	btn_hover.src = "<?= base_url(); ?>css/images/insurance-button-big-hover.png";
}

$(document).ready(function(){
	$('#notice').hide().delay(1000).slideDown('slow');			
	
	//animate chat icon
	$('#chat').animate({
	  top:250
		}, 4000);
	
	$("a[rel='external']").click(function(e){
		e.preventDefault();
		var url = $(this).attr('href');
		var url = url.replace(/\//g,'~');
		var url = escape(url);
		// pass it as a url variable
		$(this).attr['href'] = 'http://www.healthlifedentalinsurance.com/ajax/url/' + url; 	
		window.location = $(this).attr['href'];
	});
	
	$("a[rel='video']").colorbox({height:"600px",width:"700px",iframe:"true"});
	
	$("a[rel='fixed-wide-video']").colorbox({innerHeight:"355px",innerWidth:"675px",iframe:"true",scrolling:"false"});


});


