
/* Image Preloader */
var imagenes=new Array()
function loadImages() {
	for (i=0; i<arguments.length; i++) {
		imagenes[i] = new Image();
		imagenes[i].src = arguments[i];
	}
}


function popup(theURL,winName,features) { 

window.open(theURL,winName,features);

}

function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}


