/*
---------------------------------------------
* jQuery-Plugin Dynamic Equal Height"
* Version: 1.0, 25.9.2011
* by Lazarev Alexsandr, regatagroup@gmail.com
* Daronet: Dev Group
---------------------------------------------
*/
;(function($) {
	$.fn.equalHeight = function() {
	  var group = this;
		$(window).bind('resize', function(){
			var tallest = 0;
			$(group).height('auto').each(function() {
				tallest = Math.max(tallest, $(this).height());
			}).height(tallest);
		}).trigger('resize');
	}
}) (jQuery)


$(window).load(function(){
  $('.articlesGalleryContainer .articletext').equalHeight();
	$('.articlesListContainer .PanelShopCart, .articlesListContainer .PanelAddInfo').equalHeight();
	$('.articlesGalleryContainer h3').equalHeight();
	$(function() {
    if (window.PIE) {
        $('.rounded, .button, .buttonSubmit, .Button, .ButtonSubmit, input[type=text], input[type=password], textarea').each(function() {
            PIE.attach(this);
        });
    }
});
	
});


