/////////////////////EXTY////////////////////////////////////////
//opoznienie
$.fn.wait = function(time, type) {
    time = time || 1000;
    type = type || "fx";
    return this.queue(type, function() {
        var self = this;
        setTimeout(function() {
            $(self).dequeue();
        }, time);
    });
};

var agrovita = {
	
	//
	// Inicjuje wszystkie funkcje strony.
	//
	init: function() {
		agrovita.initEvent();
		agrovita.initElse();
	},

	//
	// a takie tam rozne.
	//
	initEvent: function() {
		$(".openclose").click(function (e) { 
			  e.preventDefault();
			  $(this).fadeOut("slow");
		      $("+ div", this).fadeIn("slow"); 
		    });	
	},

	initElse: function() {
		$("a[rel]").overlay();
		$("#frm1").validate();
		$("#mmm, .round").corner(); //zaokragalmy rogi
		$('#bbn').flash({
		    src: '/images/bonobanner.swf',
		    width: 927,
		    height: 200,
		    wmode: 'transparent'
		});
	}


};

$(document).ready(function() {
	agrovita.init();
});
