
//generic error and success faceboxes
$.errorBox = function(text) {
  $.facebox('<h2 class="title icon_warning">Upsss</h2>' + text);
}

$.successBox = function(text) {
  $.facebox('<h2 class="title icon_check">Uspješno!</h2>' + text);
}


$(document).ready(function() {
	  $('a[rel*=facebox]').facebox();
	  $('a#doUlet img').ifixpng();
});


//add Accept:text/javascript header to jQuery ajax requests
$.ajaxSetup({ 'beforeSend': function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")} });
