$(document).ready(function() {
   
    $('.popup').click(function() {
        window.open($(this).attr("href"));
        return false;
    });

    $('.doPrint').click(function() {
        window.print();
    });
    
    $('.doBookmark').click(function () {
        // works in IE
	if(document.all) {
		window.external.AddFavorite(location.href,document.title);
	}
	// so give a helpful message otherwise
	else {
		alert("Press CTRL +D to bookmark this page");
	}
    });

    $('.doEmail').click(function() {
        window.location.href='mailto:?subject=Knauf Drywall page that may interest you&body='+window.location.href;
    });

    $('.firstRow').equalHeights();
    $('.secondRow').equalHeights();
    $('.thirdRow').equalHeights();

});


