$(document).ready(function(){
	$('.slide-pic').hide();
	$('.oferta').hide();
	
	$('#oferta-slide1').show();
	$('#img-slide1').show();
	
	$('.link-slide').mouseover(function(){
		$('.slide-pic').hide();
		$('.oferta').hide();
		$('#img-'+$(this).attr('id')).show();
		$('#oferta-'+$(this).attr('id')).show();
	});
});

function sterge(element)
{
	element.value = null;
	element.onclick = null;
}

