/**
 * @author Mikolaj
 */
 
	jQuery.noConflict();

	var j;
	
	jQuery(document).ready(function(){
					jQuery(".small").click(function(){
						jQuery("#content p").css("font-size","12px");
						jQuery("#content p").css("line-height","18px");
					});
					
					jQuery(".normal").click(function(){
						jQuery("#content p").css("font-size","14px");
						jQuery("#content p").css("line-height","20px");
					});
					
					jQuery(".big").click(function(){
						jQuery("#content p").css("font-size","16px");
						jQuery("#content p").css("line-height","22px");
					});
					
					jQuery(".showForm").click(function(){
					      jQuery(".questionForm").show();
						  this.hide();
						  jQuery(".hideForm").show();
					});
					
					jQuery(".hideForm").click(function(){
					      jQuery(".questionForm").hide();
						  this.hide();
						  jQuery(".showForm").show();
					});
					
					jQuery("#datepicker1").datepicker();
					jQuery("#datepicker2").datepicker();
					
					jQuery('#bbcode').markItUp(mySettings);
		
					for(var i=1;i < 32;i++){
						j = i;
						jQuery('#info-'+j).mouseover(function(j){
							var o = jQuery(this);
							o.children('div').slideDown();
						});
						jQuery('#info-'+j).mouseout(function(j){
							var o = jQuery(this);
							o.children('div').hide();
						});
						jQuery('.info-'+j).mouseover(function(j){
							jQuery(this).show();
						});
					}
					
					jQuery(".showDPZ").click(function(){
					      jQuery(".dpz-box-content").show();
						  this.hide();
						  jQuery(".hideDPZ").show();
					});
					
					jQuery(".hideDPZ").click(function(){
					      jQuery(".dpz-box-content").hide();
						  this.hide();
						  jQuery(".showDPZ").show();
					});
				});

