$(document).ready(function(){
    var url = $('#url').text();
    $('div.listareAnuntImgSmall span > img').each(function() {
		$(this).click(function() {
			var img = $(this).attr("src").split("/");
			img.splice(4,1);
			var newImg = img.join("/");
			$('.listareAnuntImgMain > img').attr('src', newImg).fadeIn('slow');
	    });
	});
	$('.selectAll').bind('click', function(){
		var checked_status = this.checked;
		$("input[type=\'checkbox\']").each(function() {
			this.checked = checked_status;
		});
	});	
	$('.listareAnuntImgSmall a').lightBox({
	    imageBlank: url+'/img/lightbox-blank.gif',
	    imageLoading: url+'/img/lightbox-ico-loading.gif',
	    imageBtnClose: url+'/img/lightbox-btn-close.gif',
	    imageBtnPrev: url+'/img/lightbox-btn-prev.gif',
	    imageBtnNext: url+'/img/lightbox-btn-next.gif'
	});
		
});
var delay = function () {
	setTimeout("blockUI()", 2000);
}
var blockUI = function() {
	var accepted=$.cookie('disclaimer');
	if(accepted!='yes'){
		$.blockUI({ 
			message: $('#disclamer'),
			css: { 
	            top:  ($(window).height() - 500) /2 + 'px', 
	            left: ($(window).width() - 500) /2 + 'px', 
	            width: '500px' 
	        } 
		}); 
		$('#si').click(function(event){
			$.unblockUI(); 
			$.cookie('disclaimer','yes', { path: '/', domain: '.kijijiannunci.com', expires: 7});
		});
	}
}
var validareCautare = function () {
	var camp    = $('input#camp');
	var select  = $('select#select');
	var keyword = camp.val();
	var cat_id  = select.val();
	if(keyword == '') {
		camp.removeClass().addClass('camp_error').focus();
		return false;
	}
	camp.removeClass().addClass('camp');
	if(cat_id == '') {
		select.removeClass().addClass('select_error').focus();
		return false;
	}
	select.removeClass().addClass('select');
	return true;
}

