﻿jQuery(document).ready(function() {

	jQuery.fn.exists = function() { return jQuery(this).length>0; }




	// Change background in html to red (halinka dzieciom)
			if (jQuery('body').hasClass('hd')) {
					jQuery("html").css({ background: "#820006" });
			}



	// Remove margin in last element
			
			jQuery('#news .item:last-child').css({ borderBottom: '0 none' });





});



