$(document).ready( function() {
	
	$('#heros').hide();
	
	$('#slideshow').hide().delay(1000).slideDown('slow', function() {
    	$('#slides').cycle();
    	$('#heros').slideDown('slow');
  	});
	
	
	
	
});


(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery);

jQuery.preLoadImages(
	'/img/public/tab-over.png',
	'/img/public/tab-over.png',
	'/img/public/slides/1.jpg',
	'/img/public/slides/2.jpg',
	'/img/public/slides/3.jpg',
	'/img/public/slides/4.jpg',
	'/img/public/slides/5.jpg'
);


function deleteEntry(id,model) {
    var conf = confirm("Are you sure you want to delete this?");
	if(conf) {
		field = model + "Id";
	  document.delform.elements[field].value=id;
	  document.delform.submit();
	} else {
	  return;
	}
 }

