function showAndroidBuyDialog() {
 $.get(
       window.location.href + "/buy/dialog",
       function(data, status) { jQuery.lightbox_update(data) },
       "html");
};

jQuery(document).ready(
    function() {
        jQuery('#buy_it #buy_button_wrapper a').click(
            function() { 
	        if (jQuery("#app_type").html() == 'AndroidApp') {
	            jQuery("body").lightbox(
                        {
	                    content_function : showAndroidBuyDialog,
	                    mode : "interact"
	                }
                    );
	            $.lightbox_wait();
	            return false;
	        }
                return true;
            }
        );
    }
);

