$(document).ready( function() {
	$('a[href=""]').addClass('nonhref');

	$("a[rel^='foo']").prettyPhoto({
		social_tools: false,
		overlay_gallery: false
	});

// 	$('a').each( function() { 
// 		$this = $(this);
// 		if(!$this.attr("href"))
// 			$this.addClass('nonhref');
// 	});
//     $("a[href^='http://']").click(function() {
//         return !window.open(this.href);
//     });
/*
    $(".adresar-search-form").mouseover(function() {
        $(this).css("background-color", "none");
    });
*/
});

function loadBanner(ban, type, id, ids, langId)
{
	clearTimeout(ban);

	$.get
	(
		'/index.php',
		{
			'cmd': 'get-banner',
			'type': type,
			'id': id,
			'ids': ids,
			'langId': langId
		},

   	function(data)
		{
			if(data)
			{
				$('#bp-'+type).html(data);
			}
   	}
	);
}
