var $el, $tempDiv, $tempButton, divHeight = 0;

$.fn.middleBoxButton = function(text, url) {
    
    return this.hover(function(e) {
    
        $el = $(this).css("border-color", "white");
        divHeight = $el.height() + parseInt($el.css("padding-top")) + parseInt($el.css("padding-bottom"));
                
        $tempDiv = $("<div />", {
            "class": "overlay rounded"
        });
                
        $tempButton = $("<a />", {
            "href": url,
            "text": text,
			//"target" : _blank,
            "class": "widget-button rounded",
            "css": {
                "top": (divHeight / 2) - 7 + "px"
            }
        }).appendTo($tempDiv);
                
        $tempDiv.appendTo($el);
        
    }, function(e) {
    
        $el = $(this).css("border-color", "#999");
    
        $(".overlay").fadeOut("fast", function() {
            $(this).remove();
        })
    
    });
    
}

$(function() {
    $("#aliBox").middleBoxButton("Visit the website", "http://www.aladdinshouston.com");
	$("#hpfBox").middleBoxButton("Visit the website", "http://www.houstonpolicefoundation.org");
   	$("#simoneBox").middleBoxButton("Visit the website", "http://www.simoneonsunset.com");
	$("#gotchaBox").middleBoxButton("Visit the website", "http://www.gotchahouston.com");
   	$("#chasesourceBox").middleBoxButton("Visit the website", "http://chasesource.hexagroop.com");
	
  	
    $("#trimbleBox").middleBoxButton("Visit the website", "http://www.feedingsteven.com");
   	$("#hunterBox").middleBoxButton("Visit the website", "http://www.hunterrealestategroup.com");
	
	
    $("#cogBox").middleBoxButton("Visit the website", "http://www.cognascents.com");
    $("#rrBox").middleBoxButton("Visit the website", "http://www.roadrunnerbailbonds.org");
   	$("#omniBox").middleBoxButton("Visit the website", "http://www.omnibaselogic.com");
    $("#jmgBox").middleBoxButton("Visit the website", "http://www.jackmeiergallery.com");
	$("#pbyBox").middleBoxButton("Visit the website", "http://www.pavlasbrownyork.com");
	$("#smBox").middleBoxButton("Visit the website", "http://www.scott-macon.com");
	$("#achlBox").middleBoxButton("Visit the website", "http://www.achlonline.com");
	$("#hcvmaBox").middleBoxButton("Visit the website", "http://www.hcvma.org");
	$("#palomarBox").middleBoxButton("Visit the website", "http://www.palomarmarketing.com");
	$("#procamBox").middleBoxButton("Visit the website", "http://www.procamtexas.com");
	$("#drinkgalBox").middleBoxButton("Visit the website", "http://www.drinkgal.com");
	$("#fluidarcBox").middleBoxButton("Visit the website", "http://www.fluidarc.com");
	$("#integrityBox").middleBoxButton("Visit the website", "http://www.integrityinteriorandexterior.com");
	$("#nabobBox").middleBoxButton("Visit the website", "http://www.thenabobbar.com");
	$("#travelerBox").middleBoxButton("Visit the website", "http://www.thelearytraveler.com");
	$("#bbweasBox").middleBoxButton("Visit the website", "http://www.bbweas.com");
	$("#hbuforlifeBox").middleBoxButton("Visit the website", "http://www.hbuforlife.org");
	$("#arvisdevBox").middleBoxButton("Visit the website", "http://www.arvisdev.com");
	$("#niemicBox").middleBoxButton("Visit the website", "http://www.niemic.net");
	
	
	$("#emlogisBox").middleBoxButton("Visit the website", "http://www.niemic.net");
	$("#mnslawBox").middleBoxButton("Visit the website", "http://www.mestemakerstraub.com");
	$("#hal-pcBox").middleBoxButton("Visit the website", "http://www.hal-pc.org");
	$("#liefechangeBox").middleBoxButton("Visit the website", "http://www.lifechangemarketing.com");
	$("#harbingerBox").middleBoxButton("Visit the website", "http://www.eight-ch.com");
	$("#silverchairBox").middleBoxButton("Visit the website", "http://www.silverchairsolutions.com");


});
