$(function(){
	$("div.insurance-link a").click(function(){
		new_window('/loancalc/', '700', '500');
		return false;
	});

    $('#mycarousel').jcarousel({
    	wrap: 'circular',
    	buttonNextHTML: '',
    	buttonPrevHTML: '',
    	auto: 2,
    	scroll: 1,
    	animation: 'slow',
    	easing: 'linear'
    });
	$('.imagegroup').cycle('fade');

});

function new_window(src, width, height) {
	window.open(src, '', "width=" + width + ",height=" + height + ",scrollbars=yes");
}


