(function(){
	$(document).ready(function(){
		header_img = $("#header_cnt").attr('class').replace(/siva|bijela|narancasta|zelena|\s+/g, "");
		$("#header_cnt").css('background-image', 'url('+WEB+'/assets/images/header_bg_'+COLOR+'_'+header_img+'.jpg)');

		$("a.color").click(function(){
			color = $(this).attr('rel');
			c = $("#header_cnt").attr('class');
			new_c = c.replace(/bijela|zelena|siva|narancasta/, color);
			$("#header_cnt").attr('class', new_c);

			url = SITE+'/settings/index/color/'+color;
			$.getJSON(url, function(x) {
			});

			header_img = $("#header_cnt").css('background-image');
			header_img = header_img.replace(/bijela|zelena|siva|narancasta/, color);
			$("#header_cnt").css('background-image', header_img);

			$("#header div.colors").find("a.color img").each(function(){
				img_src = $(this).attr('src');
				img_src = img_src.replace(/bijela_colors|zelena_colors|siva_colors|narancasta_colors/, color+'_colors');
				$(this).attr('src', img_src);
			});
		});

		$("a.sendtofriend").click(function() {
			id = $(this).attr('rel');
			window.open(SITE+'/posalji_prijatelju?id='+id,null,"height=400,width=450,status=yes,toolbar=no,menubar=no,location=no");
			return false;
		});
		
		$("a").click(function(){ $(this).blur(); });
		$("a.link").mouseover(function(){
			try {
				if($(this).attr('class').indexOf("selected") > -1) return false;
				img = $(this).find('img');
				img_src = img.attr('src');
				if(img_src.indexOf("On.jpg") == -1) img_src = img_src.replace(".jpg", "On.jpg");
				img.attr('src', img_src);
			} catch(err) {}
		});
		$("a.link").mouseout(function(){
			try {
				if($(this).attr('class').indexOf("selected") > -1) return false;
				img = $(this).find("img");
				img_src = img.attr('src');
				img_src = img_src.replace("On", "");
				img.attr('src', img_src);
			} catch(err) {}
		});

		$("a.blok").click(function() {
			rel = $(this).attr('rel');
			$("#"+rel).slideToggle();
			return false;
		});
	});
})();