$(document).ready(function(){
	
		//$.get('components/quicklinks.html', function(qldata){
		//$('.quickLinksIcons').html(qldata);
		//});
	
		$.get('components/quickFinder.html', function(data) {
  		$('#tabContainer').html(data);
  			$(function() {
			$("#tabs").tabs();
			});
  		});
  	
  		$(".rolloverModule").hover(function() {
    	$(this).animate({ backgroundColor: "#dddddd" }, 600);
    	},function() {
    	$(this).animate({ backgroundColor: "#ffffff" }, 600);
    	});
    	$(".rolloverModuleAlt").hover(function() {
    	$(this).animate({ backgroundColor: "#d3d3d3" }, 300);
    	},function() {
    	$(this).animate({ backgroundColor: "#f3f3f3" }, 600);
    	});



 
 
 
 
 var $mapDialog = $('<div id="mapDialog"></div>')
		.html('<iframe width="796" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Alamo+Ace+Hardware,+Alamo,+CA&amp;sll=37.0625,-95.677068&amp;sspn=41.632176,92.900391&amp;ie=UTF8&amp;hq=Alamo+Ace+Hardware,&amp;hnear=Alamo,+Contra+Costa,+California&amp;cid=11819744579798359160&amp;ll=37.858998,-122.028751&amp;spn=0.027106,0.068235&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Alamo+Ace+Hardware,+Alamo,+CA&amp;sll=37.0625,-95.677068&amp;sspn=41.632176,92.900391&amp;ie=UTF8&amp;hq=Alamo+Ace+Hardware,&amp;hnear=Alamo,+Contra+Costa,+California&amp;cid=11819744579798359160&amp;ll=37.858998,-122.028751&amp;spn=0.027106,0.068235&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">View Larger Map</a></small>')
		.dialog({
			autoOpen: false,
			title: 'Map & Directions',
			modal: true,
			height: 500,
			width: 800,
			resizable: false
		});
		
		$('.mapOpener').click(function() {
	if ($.browser.msie) {
    	window.open("http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Alamo+Ace+Hardware,+Alamo,+CA&sll=37.848511,-122.032303&sspn=0.007752,0.008272&ie=UTF8&hq=Alamo+Ace+Hardware,&hnear=Alamo,+Contra+Costa,+California&ll=37.848553,-122.029084&spn=0.007752,0.01472&z=17&iwloc=A",null,
    "height=1024,width=768,status=yes,toolbar=yes,menubar=yes,location=yes");
 } else {
 		$mapDialog.dialog('open');
 }
 		
		});

  	  	var $textDialog = $('<div id="textDialog"></div>').html('<p>Hi my name is Keith Gilbert, I have been in the same business of retail hardware and home improvement for thirty years now. I have worked for large corporations as well as the mom and pop stores in this county. I will tell you that there is nothing like working at an independently owned store do to the exceptional service that is provided every day we are open. It is a pleasure to come to work from 50 miles away just to be able to work with our customers listening to their needs and wants then having the opportunity to go make it happen. We have been able to put things in this store that even Yardbirds did not have in the past, for example 20ft plastic Bender Board or Rebar, Paver Stones, Building blocks, and Stepping Stones.</p><p> We have made several changes to our mix of goods and supplies in this location to compliment the original programs. We are doing everything in our power to be price conscious of our building materials and we go out to shop the big box competition every two weeks. We are finding that our prices in a lot of areas are actually less and that is a huge benefit to you the customers. I want to thank all of you for your continued support and please let me know if there is product you would like to see in the store or if we can order it for you. I look forward to seeing you in the store.</p><p>Sincerely,<br />Keith Gilbert</p>')
 
		.dialog({
			autoOpen: false,
			title: 'more',
			modal: true,
			height: 500,
			width: 800,
			resizable: false
		});

		$('.textOpener').click(function() {
		$textDialog.dialog('open');
		});

   


	var $contactUsDialog = $('<div id="contactUsDialog"></div>')
		.html('<h3>Feel free to contact us in any of the following ways</h3><p><strong>Email us at:</strong><a href="mailto:service@alamohardware.com">service@alamohardware</a></p><p><strong>Phone us at:</strong> 925.837.2420</p><p><strong>Fax:</strong> 925.837.2419</p><p><strong>Visit and/or write to us at:</strong><br />Alamo Ace Hardware<br /> 3211 Danville Blvd.<br /> Alamo, CA 94507</p>')
		.dialog({
			autoOpen: false,
			title: 'Contact Us',
			modal: true,
			height: 300,
			width: 500,
			resizable: false
		});

		$('.contactOpener').click(function() {
		$contactUsDialog.dialog('open');
		});

  	
  	
   
   
   
   
   
   
   
 });
