/* Segmentation Engine Functions Author: Matt Kircher Created: August 23, 2011 Modified: */ function loadXMLFile( XMLfile, callback ){ //get the xml string jQuery.ajax({ url: XMLfile, type: 'GET', dataType: 'xml', success: callback }); } /* load colorbox style login popup functionality */ function applyLoginPopups(){ if( jQuery('.login_popup').length ){ jQuery('.login_popup').colorbox({ width:"25%", inline:true, href:"#login-area", onOpen: function(){}, onComplete:function(){}, onClosed:function(){} }); } }