$(window).load(function(){


	$('div.box_').each( function() {
		$(this).css('height',$(this).parent().parent().height());
		var _height = $(this).height() - $(this).find('img').height() - intval($(this).find('div.text').css('padding-top')) - intval($(this).find('div.text').css('padding-bottom')) -1;
		$(this).find('div.text').css('height',_height);
		$(this).append('<div class="bl"></div>');
		$(this).append('<div class="br"></div>');
	});

 	$('.box_').parent().mouseover(function() {
		var img_hover = $(this).find('img.box').attr('rel');
		var img_normal = $(this).find('img.box').attr('src');
		if (img_hover) {
			$(this).find('img.box').attr('src',img_hover);
			$(this).find('img.box').attr('rel',img_normal);
		}

	});
	
	$('.box_').mouseout(function() {
		var img_hover = $(this).find('img.box').attr('rel');
		var img_normal = $(this).find('img.box').attr('src');
		if (img_hover) {
			$(this).find('img.box').attr('src',img_hover);
			$(this).find('img.box').attr('rel',img_normal);
		}

	});
	
});
