$(document).ready
(
  function()
  {
	var res;
	$(".erasevalue").mouseover(function() {
	    res = $(this).val();
	    if($(this).val() == 'Žò' || $(this).val() == '„î'){
	    	$(this).val('');
	    }
	}).mouseout(function(){
		if($(this).val()=='')
		    $(this).val(res);
	});
	
	$("a.fancybox").fancybox();
	
	$("a.inbasket").click(function() {
		$.fancybox({
			'showCloseButton'	: true,
			'title'			: this.title,
			'href'			: this.href,
		});
		
		$.ajax(
		{
			url: '/basket/?tmpl=mini',
			success: function(res){
				$("#header_basket .inner").html(res);
			}
		});
		
		return false;
	});

	$.ajax(
	{
		url: '/basket/?tmpl=mini',
		success: function(res){
			$("#header_basket .inner").html(res);
		}
	});
  }
);