$(document).ready(function () {
	$("#box_castrol, #box_bp, #box_aral").each(function() {
		$(this).click(function() {
			document.location.href = $(this).attr('rel');
		});
	});

	if ($.browser.msie) {
		$("#box_bp, #box_aral").hover(
			function() { // over
				$(this).toggleClass('over');
			},
			function() { // out
				$(this).toggleClass('over');
			}
		);
	}
	
});
