/*---------------------------------
 * Initiate Jquery Functions
 *---------------------------------
 */

$(document).ready(function(){
	//Remove submit text for image button fix
	$("#tform input[type='button']").val("");
	
	//Zebra-stripe on Features table
	$("table#features tr:nth-child(odd)").addClass("alt");

    $('a[rel~="external_popup"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    $('a[rel~="pdf_popup"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
});
