function prod(){
	$('#canvas .prod').each(function(){
		var adir = $(this).children('a');
		var dir = adir.attr('href');
		$(this).attr('title', $(this).children('img').attr('alt'));
		$(this).mouseover(function (){
			$(this).addClass('prodover');
			adir.addClass('hover');
			$(this).children('div, h4').css({'border-color': '#999'});
		}).mouseout(function(){
			$(this).removeClass('prodover');
			adir.removeClass('hover');
			$(this).children('div, h4').css({'border-color': '#DDD'});
		}).click(function(){
			window.open(dir);
		}).bind('mouseenter', function(){
			$(this).animate({borderTopColor: '#ED1C24', backgroundColor: '#FFF200'}, 500);
		}).bind('mouseleave', function(){
			$(this).animate({borderTopColor: '#FFF200', backgroundColor: '#FFF'}, 200);
		});
		adir.removeAttr('href');
	});
}


$(document).ready(function(){
	prod();
});