
function wrapImages()
{
	var width = '280px';
	var height = '210px';
	var margin = '10px 8px 5px 8px';
	
	$( '#us_catalog_item_rel_table img' ).each( function () {
		
		var source = $( this ).attr( 'src' );
		if( source != "http://conlog.upsite.co.il/images/pix.gif" )
		{
			var pos = $( this ).attr( 'align' );
			width = $( this ).attr( 'width' );
			height = $( this ).attr( 'height' );
			
			$( this ).css( 'width', width );
			$( this ).css( 'height', height );
			$( this ).css( 'margin', '0' );
			
			$( this ).wrap( '<div style="background:transparent url(' + source + ') center center no-repeat;"></div>' );
			$( this ).attr( { src : '/images/mask.png' , width : width , height : height } );
			$( this ).parent().width( width );
			$( this ).parent().height( height );
			//$( this ).parent().addClass( 'desc_image_mask' );	
		}
		
	});	
	
};

$( document ).ready( function(){
	
	wrapImages();
});

