$(document).ready(function(){
	$('.pulse').effect("pulsate", { times: 3000 }, 2000);
});


function frameover()
{
	document.getElementById('arl').style.display = 'block';
	document.getElementById('arr').style.display = 'block';
}
function frameout()
{
	document.getElementById('arl').style.display = 'none';
	document.getElementById('arr').style.display = 'none';
}
function imagehoover(who)
{
	$("#i"+who.id).animate({
			opacity: 1.00,
			width: "275px",
			height: "187px",
			top: "-9px",
			left: "-12px"
		}, 200
	);
	$("#"+who.id).animate({
			opacity: 1.00,
			width: "275px",
			height: "187px",
			top: "-9px",
			left: "-12px"
		}, 200
	);
}

function imageout(who)
{
	$("#i"+who.id).animate({
			opacity: 0.0,
			width: "250px",
			height: "170px",
			top: "0px",
			left: "0px"
		}, 200
	);
	$("#"+who.id).animate({
			opacity: 0.0,
			width: "250px",
			height: "170px",
			top: "0px",
			left: "0px"
		}, 200
	);
}

