/**
 * Gueard emails against spam
 */
function writemail(p1, p2, p3)
{
	document.write("<a href='mailto:"+p1+"@"+p2+"."+p3+"'>"+p1+"@"+p2+"."+p3+"</a>");
}

$(document).ready(function(){
	if(($.browser.msie)&(parseInt($.browser.version)<7)){
		$("img[src$='.png']").each(function(){$(this).addClass("png");});

		$('#content #head-bg.products').css('background-image', 'url(img/2_head.gif)');
		$('#content #head-bg.products').css('background-color', '#A20A0A');

		$('#content #head-bg.stockage').css('background-image', 'url(img/3_head.gif)');
		$('#content #head-bg.stockage').css('background-color', '#FE5B00');

		$('#content #head-bg.contact').css('background-image', 'url(img/4_head.gif)');
		$('#content #head-bg.contact').css('background-color', '#315016');

	}else{
		$('#big-categories .item').mouseenter(function(){
			src_pieces = $(this).children('.bottom').children().attr('src').split('.png');

			if (src_pieces[0].search('_hover') == -1){
				$(this).children('.bottom').children().attr('src', src_pieces[0] + '_hover.png');
			}
		});

		$('#big-categories .item').mouseleave(function(){
			if ($(this).children('.bottom').children().attr('src').search('_hover') != -1){
				src_pieces = $(this).children('.bottom').children().attr('src').split('_hover.png');

				$(this).children('.bottom').children().attr('src', src_pieces[0] + '.png');
			}
		});
	}
});
