$(document).ready(function(){
	var $actOpen;

	$("#box_start #box_images .imagesPrev").mouseover(function(){
		if($actOpen != $(this).attr("id")) {
			$actOpen = $(this).attr("id");
			$("#box_start #box_images .imagesPrev").stop().width(138);
			$(this).animate( { width:"405px" }, 'slow');
		}
		

	});
	$("#box_link a").mouseover(function(){
		$("#box_start #box_images .imagesPrev").stop().width(138);
	});


});