// JavaScript Document
$(document).ready(function(){
	// spustanje prozora
	$(".oglasContentLeftProizvodi").click(function(){
	$(this).parent().next().next().slideToggle("slow");
	});
	// zoom oglasa
	$('a[@rel*=lightbox]').lightBox({
	overlayOpacity: 0.6
	});
	// over
	$(".oglasContentRight > div").mouseover(function(){
	$poz = $(this).css("background-color");
	$text = $(this).css("color");
	$(this).css({ background: "#EEEEEE", cursor: "pointer" });
	});
	$(".oglasContentRight > div").mouseout(function(){
	$(this).css("background-color",$poz);
	});
	// over delatnosti
	$(".delatnostItem1, .delatnostItem2").mouseover(function(){
	$poz = $(this).css("background-color");
	$text = $(this).css("color");
	$(this).css({ background: "#EEEEEE", cursor: "pointer" });
	});
	$(".delatnostItem1, .delatnostItem2").mouseout(function(){
	$(this).css("background-color",$poz);
	});	
});