var FSI = {};
FSI.Controller = {};
FSI.Model = {};

$('document').ready(function(){

    FSI.utils.init();
//    FSI.Controller.Navigation.init();  
//    FSI.Controller.Analytics.init(); 
    /* init modal */
    new TPM.Core.FlashFromMarkup({target: '.flash_from_markup'});
    FSI.StarSafetyModal.init();
  
    /* Added by Magz. For the B&P, Explore, Test Drive buttons. */
    $(".link_buttons ul li").hover(function() {
    	$(this).fadeTo('fast', 0.8);    	
    },
    function() {
    	$(this).fadeTo('fast', 1.0);
    	
    });
});


