$_(document).ready(function(){
	// $_('#category > div.cat_row:odd div img').each(function(){
		// $_(this).css({
			// 'margin-left': '40px',
			// 'position': 'absolute',
			// 'background': 'red',
			// 'border': 'solid 3px blue'
		// }).attr('align','right')
	// })
	$_('div.cat_row:odd div .plaatje-product').each(function(){
		var id = $_(this).attr('id')
		var id_naam = id.replace('afb-','')
		$_('#afb-'+id_naam).css({
			'position': 'relative',
			'float': 'right',
			'z-index': '100'
		})
	})
	// Footer
	$_('div.pres_btn a').mouseover(function () {
		imgsrc = $_(this).children('img').attr('src');
		matches = imgsrc.match(/_over/);
		if (!matches) {
			imgsrcON = imgsrc.replace(/.jpg$/, '_over.jpg');
			$_(this).children('img').attr('src', imgsrcON);
		}
	});
	$_('div.pres_btn a').mouseout(function () {
		$_(this).children("img").attr("src", imgsrc);
	});
})
