var apotex =  {

	globals: {},

	start: function () {
		this.all();
		this.dynamic();
	},

	/* Functions used in whole website */
	all: function () {

		// Printing when specific "print link" exists
		$("a.print").bind("click", function(){
			window.print();
			return false;
		});
		$('a').click(function(e){
			//e.preventDefault();
		});
		
		/* table rows odd|even */
		$('.konferencja ul.lista li.item:odd').addClass('odd_row');
		$('.wydarzenia .event_list li.item:even').addClass('odd_row');
		
	},
	
	dynamic: function () {
	}

}

$(function() {
	apotex.start();
});

//$(document).ready(function() {
//	$('.clause.bind input[type="checkbox"]').change(function() {
//		if($(this).is(':checked')) {
//			$('.clause span').css('display', 'inline');
//		} else {
//			$('.clause span').css('display', 'none');
//		}
//	});
//});
