$(function() {
		   function handleTabSelect(event, tab) {

             if (tab.index == 0) {

                 // Find store tab selected
                 $('img#findStore').attr({ src: src="/images/tab_find.gif" });
                 $('img#requestQuote').attr({ src: "/images/tab_request_off.gif" });
             }

             else if (tab.index == 1) {

                 // Request quote tab selected
                 $('img#requestQuote').attr({ src: "/images/tab_request.gif" });
                 $('img#findStore').attr({ src: "/images/tab_find_off.gif" });
             }
         }

         // Set tab constructor values & initialize tabs
         $('#tabs').tabs({ selected: '0', select: handleTabSelect });

		// Set tab constructor values & initialize tabs
         $('#contentTabs').tabs({ selected: '0'});

     });
