// JavaScript Document
$(document).ready(function() {


$(".prog").click(function() {
	var rid=this.getAttribute('id');
        obj=$(this).parents('div').filter(":first");
        //ime=obj.getAttribute('id');
        //ulpar=$(this).parents('ul').filter(":first");
        $('.prog').removeClass("active");
        $(this).addClass("active");
	$.ajax( {
		type : "POST",
		cache : false,
		url : "index.php?id=53",
		data : {rid: rid},
		success : function(response) {
                    obj.children('.prog_opis').html(response);		  
		}
	});
	return false;
});

$("#inline").fancybox({
		'hideOnContentClick': true
	});


});
